Why aren't the outcomes of class methods being applied to global variables:
조회 수: 1 (최근 30일)
이전 댓글 표시
I'm not sure why the outcomes of class methods are not being applied to global variables:
When I enter
clear(Forest_Road,shoot)
in the main script I do not receive any errors but I don't have any trees being removed from my "forest" here grouped as collection of shoot's in a non scaler array, I think this is by design (seperating class varaibles from global variables). I tried making the input argument a global variable in the class definition but it didn't affect the outcome, what am I missing?
classdef Road
% Creation of the class road
properties
x;
y;
c;
end
methods
% Constructer
function obj = Road(x,y,c)
% Construct an instance of road class
% Assign input properties
obj.x = x;
obj.y = y;
obj.c = c;
end
function chop_trees = clear(obj,shoot)
i=1;
j=1;
while j~=80
for j=1:80
dist = hypot([shoot(i).x] - obj.x(j), [shoot(i).y] - [obj.y(j) + obj.c]);
if any(dist < 2);
global shoot
shoot(i)=[];
end
end
i=i+1;
end
end
end
end
댓글 수: 0
답변 (1개)
Steven Lord
2020년 5월 2일
Your class is a value class rather than a handle class. See the description of the difference between those two types of object here.
참고 항목
카테고리
Help Center 및 File Exchange에서 Construct and Work with Object Arrays에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!