| Author |
Comment/Response |
Dims
|
11/01/10 02:10am
This is "parametric plot".
ParametricPlot[{40 + k*Cos[127 Degree], 0 + k*Sin[127 Degree]}, {k, 0, 10}]
You should not prepare two vectors before plotting in Mathematica, you should only have math expresion of point coordinates. Here it is
{40 + k*Cos[127 Degree], 0 + k*Sin[127 Degree]}
it depends on k.
{k,0,10}
is not a range like in your Matlab formula, but just a list argument for ParametricPlot function. You should not provide step, because it is calculated interlnally to make graph continuous.
URL: , |
|