Finding diag of two cells

1 次查看(过去 30 天)
Hello,
I have two cells(a and b) each with size 1x4 and each of them contains 2x1 matrix in each of its columns. I would like to find diag([a b]) to get a 2x2 matrix but it seems that diag() is not defined for cell. Can anybody tell me what I should do?
  1 个评论
Nathan Greco
Nathan Greco 2011-7-25
What 2x2 matrix are you looking for? diag([a b]) would provide a 2x1 matrix. Are you looking for [diag(a) diag(b)]? When asking questions, please provide sample inputs with an example of the expected result.

请先登录,再进行评论。

采纳的回答

Paulo Silva
Paulo Silva 2011-7-25
Maybe
cellfun(@diag,[a b],'uni',0)
  4 个评论
Paulo Silva
Paulo Silva 2011-7-25
Look inside each cell of the ans from cellfun ;)
c=cellfun(@diag,[a b],'uni',0)
c{1} %compare this to what you are expecting from the diag function
Bahareh
Bahareh 2011-7-25
Fantastic!!! Thanks.

请先登录,再进行评论。

更多回答(1 个)

Nathan Greco
Nathan Greco 2011-7-25
Does this work for you?
diag(cell2mat([a b]))
Note that the solution is the same as:
diag([a{1} a{2}])
To get the diag of both a and b, do this:
[diag(cell2mat(a)) diag(cell2mat(b))]
-Nathan
  11 个评论
Nathan Greco
Nathan Greco 2011-7-26
You are very unhelpful and wasted my time.
Jan
Jan 2011-7-26
@Nathan: But without doubt Bahareh is very polite and thanked your repeatedly. It was obviously not his intentention to waste your time.

请先登录,再进行评论。

类别

Help CenterFile Exchange 中查找有关 Logical 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by