フィルターのクリア

Info

この質問は閉じられています。 編集または回答するには再度開いてください。

how can i use my function just ones?

1 回表示 (過去 30 日間)
Alprcnkt
Alprcnkt 2016 年 4 月 11 日
閉鎖済み: MATLAB Answer Bot 2021 年 8 月 20 日
hello i have a function and a problem :)
function[result] = transform_vertices(v, m)
for i = 1 : size(v,2)
v(:,i) = m * v(:,i); %m * ith coloumn of v
end
result = v;
end
i should use this function(transform_vertices) just ONCE to rotate ,translate but how can i use just once? my code is
image1_vertices = quad;
image1_vertices = transform_vertices(transform_vertices(quad,mrotate(30)),mtranslate(-2,0));
PS: mtranslate and mrotate are also function which calculates rotation,translation
can anyone help ?
  1 件のコメント
Roger Stafford
Roger Stafford 2016 年 4 月 11 日
Your question is somewhat vague, but I'll hazard an answer. The operation of multiple rotation would presumably require a power, not a multiple, be taken of the single rotation matrix. You appear to be simply taking a scalar multiple in your code.
Please give a lot more details.

回答 (0 件)

この質問は閉じられています。

Community Treasure Hunt

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

Start Hunting!

Translated by