How to plot n dimmensional matrix?

痞子三分冷 提交于 2019-12-25 20:05:10

问题


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

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!