MATLAB: Sphere with center and radius

solve

how to plot a sphere with center(6500000,6500000,6500000) and radius 650000

Best Answer

How about this?
[x,y,z] = sphere;
x = x*650000;
y = y*650000;
z = z*650000;
figure
surf(x+650000,y+650000,z+650000)