polar函式

polar函式是MATLAB軟體中用於極坐標繪製時設定最大半徑的函式,類似於plot函式設定用的axis(xmin xmax ymin ymax)函式。

基本介紹

  • 中文名:polar函式
  • 外文名:polar function
polar函式是MATLAB軟體中用於極坐標繪製時設定最大半徑的函式,類似於plot函式設定用的axis(xmin xmax ymin ymax)函式。
polar Polar coordinate plot.
polar(THETA, RHO) makes a plot using polar coordinates of
the angle THETA, in radians, versus the radius RHO.
polar(THETA, RHO, S) uses the linestyle specified in string S.
See PLOT for a description of legal linestyles.
polar(AX, ...) plots into AX instead of GCA.
H = polar(...) returns a handle to the plotted object in H.
Example:
t = 0 : .01 : 2 * pi;
polar(t, sin(2 * t) .* cos(2 * t), '--r');
See also polarplot, plot, loglog, semilogx, semilogy.

相關詞條

熱門詞條

聯絡我們