write for loop output as matrix

1 次查看(过去 30 天)
hi all,
can you advise me how to write my for loop output as matrix as below:
board 1 = 3x4matrix
board 2 = 3x4martix
for boardIdx = 1:params.NumPatterns %board number
R = params.RotationMatrices(:, :, boardIdx)';
t = params.TranslationVectors(boardIdx, :)';
worldBoardCoords = bsxfun(@plus, R * wpConvHull, t); %3x5 matrix
worldBoardCoords = worldBoardCoords(:,1:4) %3x4 matrix
end
  2 个评论
KALYAN ACHARJYA
KALYAN ACHARJYA 2021-1-6
output=zeros(3,4)
for i=1:3
for j=1:4
output(i,j)=........% Evaluate output
end
end
In most cases, you can avoid the loop (If not necessity), note on it.
Safwana Razak
Safwana Razak 2021-1-6
hi Kalyan, thanks for your reply. is it possible to use bsxfun(@plus, a, t) where:
a = 3x5x9 and t = 3x9? i need to add a(:,:,1) + t(:,1), a(:,:,2) + t(:,2) and so on.
i tried it but it give me error "Error using bsxfun Non-singleton dimensions of the two input arrays must match each other."
sorry this is out of the scope of main question

请先登录,再进行评论。

回答(0 个)

类别

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

产品


版本

R2020b

Community Treasure Hunt

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

Start Hunting!

Translated by