Calling an object's method that changes its property not doing what I want.

Hello
An object has property MNL_beta and method train(input, output) that I want the object to update its MNL_beta property. What is actually happening is :
>> p1
p1 =
predictor_bundle
Properties:
MNL_beta: []
Methods
>> p1.train(input, output)
ans =
predictor_bundle
Properties:
MNL_beta: [3x1 double]
Methods
>> p1
p1 =
predictor_bundle
Properties:
MNL_beta: []
Methods
What has happened? The p1's value has not changed at all?!?
>> p1 = p1.train(input, output)
p1 =
predictor_bundle
Properties:
MNL_beta: [3x1 double]
Methods
>> p1
p1 =
predictor_bundle
Properties:
MNL_beta: [3x1 double]
Methods
But using the second syntax, it's done what I wanted. How do I accomplish the result of the second method, while using the syntax of the first method?
Thank you

 채택된 답변

Chirag Gupta
Chirag Gupta 2011년 12월 16일

1 개 추천

This would stem from the difference between Value classes and handle classes. Its explained here: http://www.mathworks.com/help/techdoc/matlab_oop/brfylwk-1.html

댓글 수: 1

And so how would I exactly solve the problem?
My classdef is written as such :
classdef predictor_bundle
properties
MNL_beta
end
method
function obj = train(obj, input, output)
function here
end
end
end

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

추가 답변 (1개)

Evan
Evan 2011년 12월 16일
Hello,
Here is my classdef code. What modifications would I need to make to solve the problem?
classdef predictor_bundle
properties
MNL_beta;
end
methods
function obj = predictor_bundle()
end
function obj = train(obj, input, output)
Function here.
end
end
end

댓글 수: 2

classdef predictor_bundle < handle
....
end
http://www.mathworks.com/matlabcentral/answers/12056-matlab-oop-question

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

카테고리

도움말 센터File Exchange에서 Handle Classes에 대해 자세히 알아보기

질문:

2011년 12월 16일

Community Treasure Hunt

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

Start Hunting!

Translated by