How do I create a table from an equation?

5 views (last 30 days)
Andrew Olson
Andrew Olson on 10 Jul 2015
Answered: Azzi Abdelmalek on 10 Jul 2015
So I have an equation, specifically the equation from a sphere, x^2 + y^2 + z^2 = r^2, and I want it to return a table with all values of x, y, and z on the surface of the sphere when I specify a radius. Is this possible?
Thanks in advance

Answers (1)

Azzi Abdelmalek
Azzi Abdelmalek on 10 Jul 2015
r=10
[x,y,z]=sphere
x=x*r
y=y*r
z=z*r

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!