How to display an expression using an array
Afficher commentaires plus anciens
I am trying to to figure out how to have the following printed out in such manner:
x^2 - 4
derivative 1
function is 2x
evaluated at the root f( 2)
4
However i am having issues displaying/printing out the derivative of f which should be printiong out 2x, probably num2srt is not the right operator, can anone give me insight on which command/operator to use? seee code below;
format long
syms x
f= x^2 -4;
disp(f);
i =1;
r=2;
D1= ['derivative ', num2str(i)];
disp(D1);
der= diff(f,i);
D2=['funtion is', num2str(der)];
disp(D2);
x=r;
D3=['evaluated at the root f(',num2str(x),')'];
disp(D3);
fx=subs(der);
disp(fx);
Réponses (1)
Walter Roberson
le 7 Août 2022
0 votes
char(der) rather than num2str(der)
The result of diff() applied to a symbolic expression is a symbolic expression, not a number.
Catégories
En savoir plus sur Get Started with MATLAB dans Centre d'aide et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!