Effacer les filtres
Effacer les filtres

i just want to plot y=x in matlab mobile

2 vues (au cours des 30 derniers jours)
precious agbagharauka
precious agbagharauka le 5 Jan 2022
i just want to plot y=x in matlab mobile

Réponse acceptée

Walter Roberson
Walter Roberson le 5 Jan 2022
syms x
y = x;
fplot(y)
or
x = linspace(-10,10);
y = x;
plot(x, y);

Plus de réponses (0)

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by