plotting parallel
Is it possible to plot two functions parallel more clearly i want to plot the function and its Fourier transform to the right of the previous figure
Is it possible to plot two functions parallel more clearly i want to plot the function and its Fourier transform to the right of the previous figure
You could use graphics_array
to achieve this. If say, p1
and p2
are the plots you want to display, then the following command can achieve what you want.
sage: graphics_array((p1,p2))
Here is a link to the manual for more details.
Asked: 12 years ago
Seen: 824 times
Last updated: Dec 16 '12