Selecting specific columns in a for loop

조회 수: 3 (최근 30일)
Lui
Lui 2020년 7월 11일
편집: madhan ravi 2020년 7월 11일
Hi everyone,
I would like to select to multiply integers between 401:500 with a matrix as shown in the code below
for j=401:500
Meas_Load{j,1}= RLoad2 - j.*RPVR;
end
My expectation is that the variable Meas_Load is a cell if dimension 100 by 1. Unfortunately the resulting dimension is 500 by 1. How can I achieve a 100 by 1 cell in this loop? Thanks
  댓글 수: 2
KSSV
KSSV 2020년 7월 11일
What is size of RLoad2, RPVR?
Lui
Lui 2020년 7월 11일
Rload2 has 1000 by 100 and RPVR has 1000 by 1.
Apart from their length, does it matter? All the data sets have the same length. The only difference is in the number of columns.

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

채택된 답변

madhan ravi
madhan ravi 2020년 7월 11일
편집: madhan ravi 2020년 7월 11일
jj = 401:500;
Meas_Load = cell(numel(jj), 1);
for k = 1:numel(jj)
Meas_Load{k}= Rload2 - jj(k)*RPVR;
end
celldisp(Meas_Load)
Or simply
Meas_Load = Rload2 - reshape(jj, 1, 1, []) .* RPVR; % 3D matrix

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Creating and Concatenating Matrices에 대해 자세히 알아보기

제품

Community Treasure Hunt

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

Start Hunting!

Translated by