Subdivide a cell, based on the number of columns, inside a for loop

조회 수: 2 (최근 30일)
Alberto Acri
Alberto Acri 2023년 9월 8일
댓글: Dyuman Joshi 2023년 9월 8일
Hi! I would like to compact the rows 'char2string1', 'char2string2', ... inside a for loop. How could I do this?
char2string = importdata("char2string.mat");
num_char2string = width(char2string);
Col = 6;
Row = num_char2string/Col;
Row = round(Row,0);
% I would like to compact these rows because they have to depend by 'Col' and 'Row'
char2string_1 = char2string(1,1:Col);
char2string_2 = char2string(1,Col+1:Col*2);
char2string_3 = char2string(1,Col*2+1:Col*3);
char2string_4 = char2string(1,Col*3+1:Col*4);
char2string_5 = char2string(1,Col*4+1:end);
  댓글 수: 3
Alberto Acri
Alberto Acri 2023년 9월 8일
편집: Alberto Acri 2023년 9월 8일
Hi @Stephen23, I want to get the variables 'char2string_1', 'char2string_2',...,'char2string_#' (as reported in my question) as the end result.
However, in this case the values of 'char2string_#' depend on Col=6. I would like to generalize what I wrote, with a for loop for example, so that I can get a similar result with a different value of Col.
For example, for Col=4 I should get this:
char2string = importdata("char2string.mat");
num_char2string = width(char2string);
Col = 4;
Row = num_char2string/Col;
Row = round(Row,0);
char2string_1 = char2string(1,1:Col);
char2string_2 = char2string(1,Col+1:Col*2);
char2string_3 = char2string(1,Col*2+1:Col*3);
char2string_4 = char2string(1,Col*3+1:Col*4);
char2string_5 = char2string(1,Col*4+1:Col*5);
char2string_6 = char2string(1,Col*5+1:Col*6);
char2string_7 = char2string(1,Col*6+1:Col*7);
In the case of Col=4, the values of 'char2string_#' are 7, while in Col=6 the values of 'char2string_#' are 5.
I would like to compact the rows with 'char2string_#' and get them directly from a for loop for example.
Dyuman Joshi
Dyuman Joshi 2023년 9월 8일
How did you obtain the data? Did you get it as output from some code? As @Stephen23 mentions above, storing in that manner is not efficient.
And why do you want to generate Dynamically named variables?

댓글을 달려면 로그인하십시오.

답변 (1개)

Julian
Julian 2023년 9월 8일
편집: Julian 2023년 9월 8일
I don't know what you exactly want but this could be your answer:
for i = 7:-1:1
char2string_(i) = char2string(1,Col*(i-1)+1:Col*i);
end
I don't know what you want to do, what is supposed to come out and also how useful all this is.

카테고리

Help CenterFile Exchange에서 Loops and Conditional Statements에 대해 자세히 알아보기

제품


릴리스

R2021b

Community Treasure Hunt

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

Start Hunting!

Translated by