How to get the y values for a given function and x values
Afficher commentaires plus anciens
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
Réponse acceptée
Plus de réponses (2)
Star Strider
le 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
Timothy
le 1 Oct 2014
0 votes
Catégories
En savoir plus sur Spline Postprocessing dans Centre d'aide et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!