Clear Filters
Clear Filters

i just want to plot y=x in matlab mobile

1 view (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 Mathematics 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!