Files
labor_mathematische_anwendu…/MATLAB/Uebungen/02 Symbolic Math Toolbox/Aufgabe 8/Aufgabe8_a5.m

9 lines
128 B
Mathematica

syms x a b n c
f(x) = tan(a * x) / (1 + tan(a * x));
F(x) = int(f, x);
F(x) = simplify(F, Steps=10000, Seconds=30);
disp(F);