如何绘制n维矩阵?

时间:2014-02-13 15:10:32

标签: matlab matrix plot

我想用该矩阵的计算平均值来显示我的矩阵。 我想在同一个窗口绘制那些点和平均值。

这是我的矩阵和均值

   Input=4 1 1
         3 9 0
         2 5 5]
   Average=mean(Input

如何绘制?

使用此命令绘制图I:

     plot(InputMatrix(:,:,:),Average'*');

有9分,但我只需要3分来自矩阵和1分的意思......

       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 个答案:

答案 0 :(得分:0)

您可以使用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