我有一个矩阵12*4,我需要减去不同行的第三列元素

  • 本文关键字:元素 三列 有一个 matlab
  • 更新时间 :
  • 英文 :


我在MATLAB中有一个12x4矩阵,

A =[-1,    3,   152,    41.5 ;
     3,    9,   152,    38.7 ;
     9,   16,   152,    38.7 ;
    16,   23,   129,    53.5 ;
    23,   29,   129,    53.5 ;
    29,   30,   100,   100   ;
    30,   30.5, 83,     83   ;
    30.5, 31,   83,     83   ;
    31,   35,   83,     83   ;
    35,   41,   129,    53.5 ;
    41,   48,   129,    53.5 ;
    48,   55,   152,    38.7 ] ;

,我需要找到行中的变化通过从前一行的第三列元素中减去第二行的第三列元素,如果它们不同,则到第三行,如果相同。

答案格式为:

  B = [16, 23;
       29, 29;
       30, 17;
       35, 46;
       48, 23]

例如,第3行和第4行第3列的元素是不同的,所以如果相减,得到23。输出B第一列元素将由第四行第一列元素组成。

%Given matrix
A =[-1,     3,   152,    41.5 ;
     3,     9,   152,    38.7 ;
     9,    16,   152,    38.7 ;
    16,    23,   129,    53.5 ;
    23,    29,   129,    53.5 ;
    29,    30,   100,   100   ;
    30,    30.5,  83,    83   ;
    30.5,  31,    83,    83   ;
    31,    35,    83,    83   ;
    35,    41,   129,    53.5 ;
    41,    48,   129,    53.5 ;
    48,    55,   152,    38.7 ] ;
B=A(:,2:3);    %Taking out the columns of our interest
B = B([diff(B(:,2))~=0; true],:);   %Storing only those rows whose consecutive elements in the third column of A are different
B=[B(1:end-1,1) abs(diff(B(:,2)))] % First column is according to your condition and second column is the difference

相关内容

最新更新