Anonymous function arguments and parameters extrction
조회 수: 2 (최근 30일)
이전 댓글 표시
If I have the anonymous function:
pu = @(x, y) [x,y];
is it npossible to extract the value of the argument x after the function has acted on it?
(Apologies if this does not make sense)
댓글 수: 0
답변 (2개)
Steven Lord
2022년 4월 1일
As written, as long as you know how long either one of the inputs was, yes.
P = @(x, y) [x, y];
x1 = 1:5;
y1 = 6:10;
z = P(x1, y1)
x2 = z(1:5); % I know how long x was, extract that many elements from z
isequal(x2, x1)
x3 = z;
x3(end-4:end) = []; % I know how long y was, remove that many elements from z
isequal(x3, x1)
댓글 수: 0
Jan
2022년 4월 1일
pu = @(x, y) [x,y];
a = pu(1, 2:3)
b = pu(1:2, 3)
isequal(a, b)
This means: No, you cannot decide, what the inputs have been based on the output.
댓글 수: 0
참고 항목
카테고리
Help Center 및 File Exchange에서 Creating and Concatenating Matrices에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!