FemLabPlot - Set up to view 2D results using FEMLAB

Calling sequence:

FemLabPlot(plot_list,menu_list, unknown_list);

Parameters

plot_list - A list of items to plot. If an item is a list of two variables, it will be plotted as a vector field by FEMLAB.

menu_list - A list of strings to appear in the FEMLAB menus. There should be one entry for each entry in plot_list.

unknown_list - The list of unknowns as discussed above.

Synopsis:

Examples:

> # plot u(x,y), v(x,y) as two scalar fields;
> FemLabPlot([u(x,y) ,v(x,y)],[u,v],unknown_list);
.femlab_modules
wroutp
sv2fml

> # plot u(x,y),v(x,y) as a vector field and p(x,y) as a scalar;
> FemLabPlot([[u(x,y),v(x,y)], p(x,y)] [uv_vector,pressure],unknown_list);
.femlab_modules
wroutp
sv2fml