Download MuPAD from SciFace

MuPAD Pro Computing Essentials - Examples 

Example 8.6 - Plotting sequences

In this example I show how sequence of data can be plotted in MuPAD 2.5. Note, that due to changes between version 2.0 and 2.5 the example presented in my book will not work in MuPAD 2.5. Here is use the improved code for ver. 2.5 

an := [((n-1)/(n+1))^n $ n=1..10]
  
myData := plot::data(
   an,
   Style=LinesPoints,
   Colors = [RGB::Blue],
   GridLines=Automatic
);
 
plot(myData)

 

TOP