How to get the y values for a given function and x values
1 view (last 30 days)
Show older comments
I need the y values for a given function and x values. This is what I have, but it doesn't work:
x = [1.99:0.00004:2.01];
f = @(x) (x-2).^7
y2 = fnval( f,x);
thanks for the help
0 Comments
Accepted Answer
More Answers (2)
Star Strider
on 1 Oct 2014
You can simply evaluate it directly as a function:
x = [1.99:0.00004:2.01];
f = @(x) (x-2).^7;
y2 = f(x);
figure(1)
plot(x, y2)
grid
0 Comments
See Also
Categories
Find more on Spline Postprocessing in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!