how to create matrices efficiently

Hi!
let's say I have 10 different angles. So I have a1, a2, a3, ... a10. I need to calculate 10 different 2x2 matrices depending those angles and save them. So my matrices will be [cos(a1), sin(a1); sin(a1), -cos(a1)] and so on. Question is how I can make those matrices without writing all 10 matrix by hand? I've tried make those by for loop and I think my problem is that I need multiple matrices instead vectors.

2 件のコメント

Azzi Abdelmalek
Azzi Abdelmalek 2013 年 9 月 21 日
This is not clear
Roger Stafford
Roger Stafford 2013 年 9 月 21 日
Just a note of caution. In case those 2x2 matrices were intended to be rotation matrices by the angles a1, a2, ..., the signs are wrong in the second column.

サインインしてコメントする。

 採用された回答

per isakson
per isakson 2013 年 9 月 21 日
編集済み: per isakson 2013 年 9 月 21 日

0 投票

Here is a start
>> f = @(a) [cos(a), sin(a); sin(a), -cos(a)];
>> f(pi)
ans =
-1.0000 0.0000
0.0000 1.0000
>>
where
f = @(a) [cos(a), sin(a); sin(a), -cos(a)];
Search the help for "Anonymous Functions"

その他の回答 (1 件)

Kasper
Kasper 2013 年 9 月 23 日

0 投票

That helped so much!! Thank You!

カテゴリ

ヘルプ センター および File ExchangeCreating and Concatenating Matrices についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by