博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
IDL vector filed plot
阅读量:2442 次
发布时间:2019-05-10

本文共 1145 字,大约阅读时间需要 3 分钟。

The VELOVECT procedure produces a two-dimensional velocity field plot. A directed arrow is drawn at each point showing the direction and magnitude of the field.

This routine is written in the IDL language. Its source code can be found in the file velovect.pro in the lib subdirectory of the IDL distribution.

Examples


; Create some random data:U = (S, 20, 20)V = (S, 20, 20); Plot the vector field:, U, V; Plot the field, using dots to represent vectors with values ; greater than 18:, U, V, MISSING=18, /DOTS; Plot with a title. Note that the XTITLE keyword is passed; directly to the PLOT procedure:, U, V, MISSING=18, /DOTS, XTITLE='Random Vectors'

Syntax


VELOVECT, UV [, XY] [, =index] [, =value [, /]] [, =value] [, /] [Also accepts all PLOT keywords]

Arguments


U

The X component of the two-dimensional field. U must be a two-dimensional array.

V

The Y component of the two dimensional field. must have the same dimensions as U.

X

Optional abscissae values. X must be a vector with a length equal to the first dimension of U and V.

Y

Optional ordinate values. Y must be a vector with a length equal to the second dimension of U and V.

转载地址:http://wtiqb.baihongyu.com/

你可能感兴趣的文章
银行监会选红旗Linux建设公文传输系统(转)
查看>>
网上交易中帐号和密码被盗的解决途径(转)
查看>>
Java线程总结(转)
查看>>
Java学习之类的属性(转)
查看>>
轻松搞定Java内存泄漏(转)
查看>>
Java学习之值传递(转)
查看>>
linux中crontab命令(转)
查看>>
牛人请进 小弟跪求(转)
查看>>
Linux版本凌乱痛失市场(转)
查看>>
大家好,新学生。 请问怎么升级Redhat9.0 kernel 2.4.X-->2.6.18 的详细过程(转)
查看>>
FreeBSD6.1+无线+永中......桌面安装【附笔记】(转)
查看>>
adsl设置(转)
查看>>
Wii将有一个可升级的Linux操作系统(转)
查看>>
Linux机为先锋智能机和PDA06销量大(转)
查看>>
Oracle与SQL Server在企业应用中的比较(转)
查看>>
让FreeBSD使用ntpd同步时间(转)
查看>>
用cat命令查看文件内的特殊字符(转)
查看>>
debian sid下vmware不能运行一则(转)
查看>>
Linux操作系统套接字编程的5个隐患(转)
查看>>
Ubuntu Linux:定制Ubuntu安装CD(转)
查看>>