replace value in many colone to one value

1 回表示 (過去 30 日間)
alize beemiel
alize beemiel 2020 年 8 月 19 日
編集済み: Bruno Luong 2020 年 8 月 19 日
i have matrix witn n line row
mtx = [1 1 0 1;
2 0 1 1;
3 1 1 1;
4 1 1 0;
5 1 1 0 ]; % and so on (n rows )
and i want to have this to join value colone 2 and 3 and 4 in one colone
mtx= [1 101;
2 011;
3 111;
4 110;
5 110];

回答 (2 件)

Bruno Luong
Bruno Luong 2020 年 8 月 19 日
編集済み: Bruno Luong 2020 年 8 月 19 日
Single line
mtx*[1 0; 0 100; 0 10; 0 1]

KSSV
KSSV 2020 年 8 月 19 日
編集済み: KSSV 2020 年 8 月 19 日
mtx = [1 1 0 1;
2 0 1 1;
3 1 1 1;
4 1 1 0;
5 1 1 0 ];
[m,n] = size(mtx) ;
iwant = zeros(m,2) ;
iwant(:,1) = mtx(:,1) ;
iwant(:,2) = mtx(:,2:end)*[100 10 1]' ;
  2 件のコメント
alize beemiel
alize beemiel 2020 年 8 月 19 日
wow !
thank You Sir,
thank You very much
KSSV
KSSV 2020 年 8 月 19 日
Thanks is accepting/voting the answer.. :)

サインインしてコメントする。

カテゴリ

Help Center および File ExchangeDescriptive Statistics についてさらに検索

タグ

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by