Operations on portions of matrices to the end of the matrices.
2 ビュー (過去 30 日間)
古いコメントを表示
First, let me start off by thanking this matlab answers community for its tremendous support for those of us new to the mathematical programming world. I've already been helped immensely by many great minds.
I'm running across an issue at the moment that I cannot wrap my head around and could use some help. I have two matrices, K & Beta. K is always 'n' rows by 4 columns. Beta is also always 'n' rows but can possibly have more columns than K.
The problem is to do mathematical operations on portions of the K and Beta matrices and combine the results in a K_structure matrix. Essentially I want to do the following:
K_structure = Beta(1:4,:)'*K(1:4,:)*Beta(1:4,:) + Beta(5:8,:)'*K(5:8,:)*Beta(5:8,:) + Beta(9:12,:)'*K(9:12,:)*Beta(9:12,:) + ...
So, the first 4 rows of Beta' times the first 4 rows of K times the first 4 rows of Beta then plus the next 4 rows of Beta' times the next 4 rows of K times the next 4 rows of Beta + ... and so on until the end of Beta and K are reached. Based on the program the end row is a multiple of 4 (i.e. 4, 8, 12, 16, etc.)
Any help would be terrific.
0 件のコメント
採用された回答
その他の回答 (1 件)
Honglei Chen
2013 年 3 月 11 日
編集済み: Honglei Chen
2013 年 3 月 12 日
Why not just use a for loop?
Let's say your K is 12 rows, so
Niteration = 12/4;
K_structure = zeros(size(Beta,2));
for m = 1:Niteration
idx = (1:4)+(m-1)*4;
K_structure = K_structure + Beta(idx,:)'*K(idx,:)*Beta(idx,:);
end
3 件のコメント
参考
カテゴリ
Help Center および File Exchange で Logical についてさらに検索
製品
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!