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

5 lines
60 B
Matlab

syms x;
f(x) = 1-x / sqrt(x)-x;
f_x = diff(f,x);
disp(f_x);