Change value in Matlab table in multiple columns

13 ビュー (過去 30 日間)
YaaW
YaaW 2022 年 10 月 11 日
コメント済み: Ghazwan 2022 年 10 月 11 日
I have a large table and want to change the values in specific columns (columns 16:41) to a different number. So for example if the number 3 is given in one of the 26 columns, this needs to be changed to 0, a number 2 to a 1 and a number 1 to a 2. I tried to do it with a loop but it didn't work and I can write a code for each of the 26 columns separately, but there must be an easier way. I also tried what I typed below where m is my dataset, but got an error 'incorrect use of '=' operator.'
(m{:,16:41} == 3) = 0;
Anyone who knows how to do this?

回答 (1 件)

Ghazwan
Ghazwan 2022 年 10 月 11 日
編集済み: Ghazwan 2022 年 10 月 11 日
Say you matrix is A
A=[100x100];
for ii=1:length(A(:,1))
for jj=16:41
if A(ii, jj)==3, A(ii, jj)=0; end
if A(ii, jj)==1, A(ii, jj)=2; end
if A(ii, jj)==2, A(ii, jj)=1; end
end
end
  4 件のコメント
YaaW
YaaW 2022 年 10 月 11 日
Yes thanks! Figured that one out as well so changed the order of the if statements. However, it still doesn't change the values in my dataset. It gives an error for the use of 'length' for type table, but I can change this to size or height. It also gives an error for the operator '==' but I know that if I change the ( to { it works. So it doesn't give an error anymore, but also doesn't change the numbers in the dataset. Is jj defined enough? I was thinking there might be something missing to find the right columns to change the values.
Ghazwan
Ghazwan 2022 年 10 月 11 日
we would not know what the issue is without looking at the data.

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

カテゴリ

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

Community Treasure Hunt

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

Start Hunting!

Translated by