Download MuPAD from SciFace

MuPAD Pro Computing Essentials - Examples 

Example 12.3a - Visualization of an Integral using the Riemann Method

For a mathematician this example is quite obvious. There is given a function (here y=x^2) and we need to visualize its definite integral  using Riemann's method.

p := student::plotRiemann(x^2, x = 0..1, 10, Left):

plot(p)

TOP