Matlab:精简的特定数量

时间:2018-03-18 09:20:19

标签: matlab matlab-figure streamline

我编写了使用streamslice函数显示流线的代码。由于使用流线功能只显示线但不显示方向,所以我使用了streamlice。但现在我只想在图表上只显示四条流线。是否可以使用streamslice进行此操作?

clear all
syms x y
[x,y]=meshgrid(-1:0.1:3,-1:0.1:3.5); 
uu=x; vv=x.*(x-1).*(y+1);
streamslice(x,y,uu,vv)

enter image description here

1 个答案:

答案 0 :(得分:0)

你可以为此增加密度。

streamslice(...,density)

当密度高于0.默认值为1.