How do I plot given points using a functions?

1 vue (au cours des 30 derniers jours)
Abigail Sebright
Abigail Sebright le 25 Nov 2020
Modifié(e) : Stephan le 25 Nov 2020
Say I have the points x = 1,12,2,6,5 and y = 5,23,5,6,3 which are not related. I know i can plot them using plot(x,y), but how do i do this using a function?

Réponses (1)

Stephan
Stephan le 25 Nov 2020
Modifié(e) : Stephan le 25 Nov 2020
x = [1,12,2,6,5]
y = [5,23,5,6,3]
plot(x,y)
% Using a function handle
y_fun = @(x) 3.*x + 5;
y_vals = y_fun(x);
plot(x, y_vals)

Community Treasure Hunt

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

Start Hunting!

Translated by