Finding y-value of a function with corresponding x-value given

4 views (last 30 days)
How to use Matlab to determine f(3)-f(5) for a function and interval of your choice.
  2 Comments
Suné Janse van Rensburg
Suné Janse van Rensburg on 26 Sep 2019
function y = f(x)
y = asind(x);
end
plotfunc2d(y, x =-5..5): grid on
I need to plot the function aswell but I'm really lost I don't know what to do

Sign in to comment.

Answers (1)

Jackson Burns
Jackson Burns on 26 Sep 2019
f = @(x) asind(x);
f(3)-f(5)
a = 0:0.1:5;
plot(a,real(f(a)),a,imag(f(a)))

Categories

Find more on Line Plots in Help Center and File Exchange

Products


Release

R2019b

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!