Problem, when trying to differentate sin(f(x)), with variable x
Mostra commenti meno recenti
Hello!
I would like to try some basic functions in Matlab. I faced two problems, which seems unable to solve for me.
If I type:
a=sin(3*x)
b=diff(a,x)
Then I run it:
a=sin(3*x)(3*x)
b=3*D(sin(3*x))(3*x)
I think it should be:
a=sin(3*x)
b=3*cos(3*x)
Please tell me what is wrong with my little code! Thank you!
Risposta accettata
Più risposte (5)
Andy
il 26 Apr 2014
0 voti
Andy
il 26 Apr 2014
0 voti
Walter Roberson
il 27 Apr 2014
0 voti
I think maybe you had something in your workspace that was interfering. Did you try clearing all variables, or restarting MATLAB?
Roberto
il 27 Apr 2014
try clearing the workspace
>> clear all;

Andy
il 27 Apr 2014
0 voti
1 Commento
Azzi Abdelmalek
il 27 Apr 2014
Don't use clear all, just clear your variables
Categorie
Scopri di più su Special Values in Centro assistenza e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
