Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
180 views
in Technique[技术] by (71.8m points)

matlab - How to plot n dimensional matrix?

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

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

1 Reply

0 votes
by (71.8m points)

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

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
OGeek|极客中国-欢迎来到极客的世界,一个免费开放的程序员编程交流平台!开放,进步,分享!让技术改变生活,让极客改变未来! Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...