Finding y-value of a function with corresponding x-value given
2 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
How to use Matlab to determine f(3)-f(5) for a function and interval of your choice.
2 Commenti
Risposte (1)
Jackson Burns
il 26 Set 2019
f = @(x) asind(x);
f(3)-f(5)
a = 0:0.1:5;
plot(a,real(f(a)),a,imag(f(a)))
0 Commenti
Vedere anche
Categorie
Scopri di più su Get Started with MATLAB in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!