Filter löschen
Filter löschen

i just want to plot y=x in matlab mobile

2 Ansichten (letzte 30 Tage)
precious agbagharauka
precious agbagharauka am 5 Jan. 2022
i just want to plot y=x in matlab mobile

Akzeptierte Antwort

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

Weitere Antworten (0)

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by