Files
labor_mathematische_anwendu…/MATLAB/Uebungen/02 Symbolic Math Toolbox/Aufgabe 4/Aufgabe4_d.m

8 lines
86 B
Matlab

syms x;
f(x) = x^2 * x^(3/4);
f_x = diff(f,x);
%simplify(f_x,Steps=100);
disp(f_x);