From: mat001 on
[xx,yy] = meshgrid([0:0.05:5],...
[0:0.05:2]);

u and v is 2d matrix (velocity x and y component)
% Plot the computed values:
I want to plot streamlines.

I read the help but it does not went to mind.

Explain me.
From: us on
"mat001 " <priya.biomath(a)yahoo.co.in> wrote in message <htlcpk$ihj$1(a)fred.mathworks.com>...
> [xx,yy] = meshgrid([0:0.05:5],...
> [0:0.05:2]);
>
> u and v is 2d matrix (velocity x and y component)
> % Plot the computed values:
> I want to plot streamlines.
>
> I read the help but it does not went to mind.
>
> Explain me.

a hint:
- try

doc streamline;

us