Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

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 plot 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
See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
179 views
Welcome To Ask or Share your Answers For Others

1 Answer

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

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
...