MATLAB: Divide a Sphere surface into equal ares

sphere face area

How can I divide the sphere surface into equal faces area, what ever its shape, Thanks

Best Answer

You will have X,Y,Z matrices as coordinates of sphere. Let its size be mxn. You divide these matrices into m/pxn/p sub matrices of p in number. So that all submatrcies have equal dimensions. Then they would be having equal areas. Use reshape to divide into sub matrices.