i just want to plot y=x in matlab mobile

19 views (last 30 days)
i just want to plot y=x in matlab mobile

Accepted Answer

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

More Answers (0)

Categories

Find more on Programming in Help Center and File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!