Using return values of functions without storing them?

Is there an elegant way to save variables by combining commands? Example: Eigenvalues of a 2x2-Matrix, b= [2 4; 9 7]. Compute the eigenvalues using eig(b) which will return 'ans = [-2; 11]'. If I wanted to know only the second eigenvalue and use that in a further reference, I'd have to store the answer of 'eig' - is there a way around this? I'm looking for something like 'z=pi * eig(b)(2,1);' (which doesn't work, because eig(b) is not recognized as a vector) instead of 'q=eig(b); z=pi * q(2,1);' Can anyone help with this?

답변 (2개)

Teja Muppirala
Teja Muppirala 2011년 7월 13일
As has been noted above, what you are trying to do is not possible. But even when you nest functions inside of each other, MATLAB still has to implicitly create temporary variables in memory.
This will probably surprise you (the second loop is significantly faster):
A = rand(1000);
tic
for n = 1:100
B1 = sum(A.^2);
end
toc
tic
for k = 1:100
tmp = A.^2;
B2 = sum(tmp);
end
toc
isequal(B1,B2)
So the point is, don't worry about creating temporary variables.
Sean de Wolski
Sean de Wolski 2011년 7월 13일
save2 = @(x)x(2,1);
z = pi*save2(eig(b));
Does what you want but is probably not faster.

댓글 수: 4

and I don't think it qualifies as elegant.
Hi Alexander,
no, currently this is not possible. But be assured, MATLAB has plenty of variables ... ;-)
@Daniel: I think it's elegant if you're going to use it multiple times; for one or two times - yes; looks kinda lame-o.
There is also a way to do it using subsref(), but it is less elegant than Sean's method.

댓글을 달려면 로그인하십시오.

카테고리

도움말 센터File Exchange에서 Creating and Concatenating Matrices에 대해 자세히 알아보기

질문:

2011년 7월 13일

Community Treasure Hunt

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

Start Hunting!

Translated by