Variables in function are not stored in workspace

조회 수: 12 (최근 30일)
Sujay A
Sujay A 2020년 4월 5일
댓글: Sujay A 2020년 4월 5일
When I run the following code, I cant access g1 and g2. How can I get g1 and g2 to be stored in the workspaceso that I can access it later?
function g = helpme(x)
g=0;
syms f;
for i=1:length(x)
if length(x)~=1
g= cumsum(x);
[c,index] = min(abs(g-sum(x)/2));
if(i<=index)
f(:,i) = zeros(1);
else
f(:,i) = ones(1);
end
g1 = x(1,1:index)
g2 = x(1,index + 1:length(x))
end
end
end
commandwindow
ss=[27 24 10 9 9 9 6 4 3 3 3 3 3];
hh=helpme(ss)

채택된 답변

Steven Lord
Steven Lord 2020년 4월 5일
If you want g1 and g2 to be available in the workspace in which you call helpme, specify them as output arguments for helpme:
function [g, g1, g2] = helpme(x)
AND call helpme with enough output arguments.
>> [hh, thisIsg1, thisIsg2] = helpme(ss)
You need both these steps.

추가 답변 (1개)

David Hill
David Hill 2020년 4월 5일
Click on the line in the function where you want to place a breakpoint. Execute the function. The function will stop at the breakpoint and your variables will be in the workspace.
  댓글 수: 1
Sujay A
Sujay A 2020년 4월 5일
function g = helpme(x)
g=0;
syms f;
for i=1:length(x)
if length(x)~=1
g= cumsum(x);
[c,index] = min(abs(g-sum(x)/2));
if(i<=index)
f(:,i) = zeros(1);
else
f(:,i) = ones(1);
end
g1 = x(1,1:index)
g2 = x(1,index + 1:length(x))
end
end
end
For the above function, I would like to put breakpoints to access g1 and g2, can you please tell me how can I do it?

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

카테고리

Help CenterFile Exchange에서 Workspace Variables and MAT-Files에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by