I have multiple arrays of 3D data. How can I plot them all on a single plot? The size of the arrays are not equal.
For example:
array1_xy = [1 2;3 4;5 6]
array1_z = [10;20;30]
array2_xy = [2 4;5 6;4 6;4 5]
array2_z = [10;20;50;10]
array3_xy = [1 4;1 6;1 3;1 5;1 1;3 4]
array3_z = [10;20;30;10;80;30]
How can I plot them on a single 3D plot with different markers?