Finding y-value of a function with corresponding x-value given
Mostrar comentarios más antiguos
How to use Matlab to determine f(3)-f(5) for a function and interval of your choice.
2 comentarios
darova
el 26 de Sept. de 2019
What have you done already? Do you have some ideas?
Suné Janse van Rensburg
el 26 de Sept. de 2019
Respuestas (1)
Jackson Burns
el 26 de Sept. de 2019
f = @(x) asind(x);
f(3)-f(5)
a = 0:0.1:5;
plot(a,real(f(a)),a,imag(f(a)))
Categorías
Más información sobre Creating, Deleting, and Querying Graphics Objects en Centro de ayuda y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!