Quantcast
Channel: MATLAB Central Newsreader - merging existing .fig into the same figure
Viewing all articles
Browse latest Browse all 15

Re: merging existing .fig into the same figure

$
0
0
Ziv wrote:

> how does [T{:}]' interperted?

Equivalent code:

temp = []
for K = 1 : numel(T)
   temp = [temp T{K}];
end
temp = temp ';


It is, in other words, the same as writing

[T{1} T{2} T{3} ... T{end}]'

Warning: ' is the complex conjugate transpose operator, not the plain
transpose operator, which is .' in Matlab.

Viewing all articles
Browse latest Browse all 15