Finding y-value of a function with corresponding x-value given
2 次查看(过去 30 天)
显示 更早的评论
How to use Matlab to determine f(3)-f(5) for a function and interval of your choice.
2 个评论
回答(1 个)
Jackson Burns
2019-9-26
f = @(x) asind(x);
f(3)-f(5)
a = 0:0.1:5;
plot(a,real(f(a)),a,imag(f(a)))
0 个评论
另请参阅
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!