Accessing local variables in a function.
59 次查看(过去 30 天)
显示 更早的评论
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
0 个评论
采纳的回答
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 个评论
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)
function y = sample1989863(x)
y = x.^2;
end
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Whos 的更多信息
产品
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!