Read in the the (i,j) values of N number of matrices

2 次查看(过去 30 天)
I want to read in the (i,j) values of a variable number of matrices.
Q1 = xlsread(FILENAME,1,'A16:C16');
Q2 = xlsread(FILENAME,2,'A16:C16');
Q3 = xlsread(FILENAME,3,'A16:C16');
Q4 = xlsread(FILENAME,4,'A16:C16');
Q5 = xlsread(FILENAME,5,'A16:C16');
for i=1:3
for j=1:3
for k=1:N
Qlam(1,k) = Q(i,j);
end
end
end
I have read in the matrices I want now I need to do calculations for the (i,j) values of each matrix. I want to store them in Qlam to access later in the second for loop. Is there a way to do this with a for loop?
  2 个评论
Stephen23
Stephen23 2019-2-24
Numbering variables is a sign that you are doing something wrong. Repeating basically the same code (i.e. copy and pasting) is a sign that you are doing something wrong.
Trying to access variable names dynamically is one way that beginners force themselves into writing slow, complex, obfuscated, buggy code that is hard to debug. Read this to know why:
Michael Whipple
Michael Whipple 2019-2-24
Then what's a better to do that? I need a "Q" matrix for each layer of a laminate and thats what is being read in at the beginning. Is there a better way to store them?

请先登录,再进行评论。

回答(1 个)

Stephen23
Stephen23 2019-2-24
编辑:Stephen23 2019-2-24
Just use a cell array, then you can trivially access the matrices using indexing:
For example:
N = 5;
Q = cell(1,N);
for k = 1:N
Q{k} = xlsread(FILENAME,k,'A16:C16');
end
  2 个评论
Michael Whipple
Michael Whipple 2019-2-24
Is there a way to use the Cell with a double? I get an error the doubles can not be converted to a cell.
Stephen23
Stephen23 2019-2-25
编辑:Stephen23 2019-2-25
"I get an error the doubles can not be converted to a cell."
Nothing in my answer would obviously cause such an error, so it is likely to be something that you did. But as you did not actually show the code that you used, I will have to rely on my magical crystal ball to look at your computer monitor and see what you tried. Unfotunately my magical crystal ball is at the workshop for repairs, and I might not get it back for a few weeks. In the meantime, you can help by actually showing the code that you tried.
Thank you for your understanding.

请先登录,再进行评论。

类别

Help CenterFile Exchange 中查找有关 Loops and Conditional Statements 的更多信息

产品


版本

R2017b

Community Treasure Hunt

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

Start Hunting!

Translated by