How do I pas one scalar from a function that outputs an array?
이전 댓글 표시
I have a function that does this:
function [A, B, C] = func(x)
A = x^2;
B = x^3;
C = x^4;
end
I want to pass it in another function like this:
ans = func2(@func,xx)
But I only want to pass B; not A or C. How do I go about doing this? Thanks
답변 (1개)
dpb
2015년 10월 11일
0 개 추천
Is no Matlab syntax to do that directly; use an intermediate temporary variable to hold the result.
If must have a function handle the best I can think of is would have to have a wrapper function around the original that returns only the desired output.
카테고리
도움말 센터 및 File Exchange에서 Mathematics에 대해 자세히 알아보기
제품
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!