问题
I want to visualize my matrix with the computed mean of that matrix. And I want to plot that points and the mean at the same window.
here is my Matrix and the Mean
Input=4 1 1
3 9 0
2 5 5]
Average=mean(Input
How to plot it??
To plott figure I using this command:
plot(InputMatrix(:,:,:),Average'*');
There are 9 points, but I just need 3 points from matrix and 1 point of the mean...
1st point from -->4 3 2
2nd point from -->1 9 0
3rd point from -->1 0 5
the 4th point is -->the mean / average
回答1:
You can use plot3:
plot3(Input(1,:),Input(2,:),Input(3,:),'o') %// plot each point (in 3D)
hold on
m = mean(Input,2); %// compute mean of all points
plot3(m(1),m(2),m(3),'*') %// plot the mean
来源:https://stackoverflow.com/questions/21758013/how-to-plot-n-dimmensional-matrix