Azzera filtri
Azzera filtri

i just want to plot y=x in matlab mobile

2 visualizzazioni (ultimi 30 giorni)
i just want to plot y=x in matlab mobile

Risposta accettata

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

Più risposte (0)

Tag

Community Treasure Hunt

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

Start Hunting!

Translated by