线上说明

MATLAB

2.3 线上说明


在MATLAB系统中相关的线上(on-line)求助方式有三:

  1. 是利用help指令,如果你已知要找的题材 (topic) 为何的话,直接键入help <topic>。所以即使身旁没有使用手册,也可以使用help指令查询不熟悉的指令或是题材之用法,例如help sqrt, help topic
  2. 是利用lookfor指令,它可以从你键入的关键字(key-word)(即始这个关键字并不是MATLAB的指令)列出 所有相关的题材,例如lookfor cosine, lookfor sine
  3. 是利用指令视窗的功能选单中的Help,从中选取Table of Contents(目录)或是Index(索引)。

例如

>> help sqrt

SQRT Square root.

SQRT(X) is the square root of the elements of X. Complex

results are produced if X is not positive.

>> help monkey

monkey not found.

>>* lookfor tangent

ACOT Inverse cotangent.

ACOTH Inverse hyperbolic cotangent.

ATAN Inverse tangent.

ATANH Inverse hyperbolic tangent.

ATAN2 Four quadrant inverse tangent.

COT Cotangent.

COTH Hyperbolic cotangent.

TAN Tangent.

TANH Hyperbolic tangent.

>> help atan

ATAN Inverse tangent.

ATAN(X) is the arctangent of the elements of X. See also ATAN2.



上一页 下一页 讲义大纲