Clear Filters
Clear Filters

i just want to plot y=x in matlab mobile

2 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)

Tags

Community Treasure Hunt

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

Start Hunting!