How can we solve this, how to convert mupad to live script?
Show older comments
A := [[2, 1, 1],
[3, 4, 3],
[3, 5, 4],
[2, 6, 5]]:
plot(plot::Matrixplot(A))
Answers (2)
Rohit Pappu
on 27 Feb 2021
0 votes
Please refer to the following link - https://www.mathworks.com/help/symbolic/convert-mupad-notebooks-to-matlab.html
1 Comment
Ciji Kurian
on 27 Feb 2021
Walter Roberson
on 27 Feb 2021
A = [[2, 1, 1]
[3, 4, 3]
[3, 5, 4]
[2, 6, 5]];
surf(A)
3 Comments
Ciji Kurian
on 27 Feb 2021
Walter Roberson
on 27 Feb 2021
Edited: Walter Roberson
on 2 Mar 2021
The plot:: series was only for use inside MuPad. MuPad was an independent symbolic programming language that Mathworks purchased the rights for, and incorporated into a product, so it already had its own plotting routines.
Ciji Kurian
on 27 Feb 2021
Categories
Find more on Common Operations in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!