Related to Mupad

2 views (last 30 days)
KSSV
KSSV on 23 Dec 2011
Commented: Mara Gation 18 Nov 2020
Hi I have a collection of scenes on the name K in mupad. I can plot these scenes using plot::(K[1],K[2],..K[end]). I can plot individual scenes by calling through its index. Is there any way to plot all scenes using plot(K)..something like this??
Isthere any option called hold on as in MATLAB in mupad such that I can run loop and plot?
Thanks in advance
Sreenu

Accepted Answer

Walter Roberson
Walter Roberson on 23 Dec 2011
I have not investigated plotting in MuPAD.
In Maple, plots are output as values with a particular structure that the pretty-printer recognizes and knows to draw. In Maple, you more or less join several plots together by just creating a list of the values and outputting that list, as in (Maple code)
P:= [seq]( 'plot(K[i])' $ i=1..nops(K) );
plots[display](P);
4条评论
Mara Gati
Mara Gati on 18 Nov 2020
Thank you very much.
This worked for me too.

Sign in to comment.

More Answers (0)

Community Treasure Hunt

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

开始狩猎!