Accessing local variables in a function.

조회 수: 61 (최근 30일)
Nupur
Nupur 2023년 6월 29일
댓글: Steven Lord 2023년 6월 29일
How can I acess the variable outside the function and thus store and show it in workspace?
function drawHexagon(sideLength, centerX, centerY)
% Calculate the coordinates of the hexagon vertices
angles = linspace(0, 2*pi, 7); % Angles for hexagon vertices
x = sideLength * sin(angles) + centerX; % x-coordinates of vertices
y = sideLength * cos(angles) + centerY; % y-coordinates of vertices
Nodes_unit_hex = [x',y'];
% Plot the hexagon
scatter(x, y );
axis equal;
grid on;
% Label the center point
text(centerX, centerY, 'C1', 'HorizontalAlignment', 'center');
end

채택된 답변

Star Strider
Star Strider 2023년 6월 29일
One option would be to return it as an output.
I am not certain which one you want to return, however assuming that it is ‘Nodes_unit_hex’ the function declaration would be:
function Nodes_unit_hex = drawHexagon(sideLength, centerX, centerY)
Note that whenever you call the function, it would be necessary to put a semicolon (;) at the end, to suppress printing the output even if you do not want to return it.
.
  댓글 수: 3
Star Strider
Star Strider 2023년 6월 29일
As always, my pleasure!
Steven Lord
Steven Lord 2023년 6월 29일
Since I've seen people make this mistake before, defining the function to have an output argument is only one part of the solution. When you call the function you need to call it with an output argument as well. MATLAB doesn't magically "poof" a variable with the same name as the output argument into the workspace from which the function was called.
Also keep in mind that the name to which you assign the output(s) of the function don't have to match the names of the output arguments in the definition, as is the case in the example below. The function declares that it returns as its first output the variable named y in its workspace. The function call assigns that data to the variable named thisIsMyOutput in its caller's workspace.
thisIsMyOutput = sample1989863(1:10)
thisIsMyOutput = 1×10
1 4 9 16 25 36 49 64 81 100
function y = sample1989863(x)
y = x.^2;
end

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

추가 답변 (1개)

Torsten
Torsten 2023년 6월 29일
이동: Torsten 2023년 6월 29일
By defining them as output variables
function [x,y] = drawHexagon(sideLength, centerX, centerY)
and calling the function as
[x,y] = drawHexagon(sideLength, centerX, centerY)
?

카테고리

Help CenterFile Exchange에서 Whos에 대해 자세히 알아보기

제품

Community Treasure Hunt

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

Start Hunting!

Translated by