vahid65

15 Reputation

2 Badges

9 years, 126 days

MaplePrimes Activity


These are answers submitted by vahid65

I found my solution.

print(y) is my solution, then the correct proc is:

Eqplot(a,b)
local y,x;

y:=a*x+b;

print(y),plot(y,x);

end proc:

the result will be both of equation and sketch.

for example:

Eqplot(4,5);

                                                                4x+5

                     

But in maple 2015 it is correct even withour print.

in maple 2015:

Eqplot(a,b)
local y,x;

y:=a*x+b;

y,plot(y,x);

end proc:

Page 1 of 1