[x, y] = pol2cart(theta, rho)
[x, y, z] = pol2cart(theta, rho, z)
| Parameter | Description |
|---|---|
| theta | a numeric value: Angular coordinate. |
| rho | a numeric value: Radial coordinate. |
| z | a numeric value: Elevation coordinate. |
| Parameter | Description |
|---|---|
| x | a numeric value (double or single real): Cartesian coordinates |
| y | a numeric value (double or single real): Cartesian coordinates |
| z | a numeric value (double or single real): Cartesian coordinates |
theta = [0 pi/4 pi/2 pi];
rho = [5 5 10 10];
[x, y] = pol2cart(theta, rho)
| Version | Description |
|---|---|
| 1.0.0 | initial version |