write for loop output as matrix

1 vue (au cours des 30 derniers jours)
Safwana Razak
Safwana Razak le 6 Jan 2021
Commenté : Safwana Razak le 6 Jan 2021
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 commentaires
KALYAN ACHARJYA
KALYAN ACHARJYA le 6 Jan 2021
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 le 6 Jan 2021
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

Connectez-vous pour commenter.

Réponses (0)

Catégories

En savoir plus sur Loops and Conditional Statements dans Help Center et File Exchange

Produits


Version

R2020b

Community Treasure Hunt

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

Start Hunting!

Translated by