Filter löschen
Filter löschen

How to solve this issue?Help me out?

4 Ansichten (letzte 30 Tage)
Arun Badigannavar
Arun Badigannavar am 8 Mär. 2013
classdef CEntity
properties
RandNumb
end
methods
function obj = CEntity
InitArray12()
end
end
end
function InitArray12()
obj.RandNumb=randi(100)
end
How to send value which is calculated in the "InitArray12" function to "RandNumb" which is there in the properties
  3 Kommentare
Nath
Nath am 8 Mär. 2013
Bearbeitet: Nath am 8 Mär. 2013
The function InitArray12 is outside the classdef so it doesnt know the instance. Change it to return your values, and assign them in the constructor
Cedric
Cedric am 8 Mär. 2013
Are you sure that you want InitArray outside of your class definition? If so, Nath answered above; otherwise, you'll want to do something like:
classdef CEntity
properties
RandNumb
end
methods
function obj = CEntity()
obj = obj.InitArray12() ;
end
function obj = InitArray12(obj)
obj.RandNumb = randi(100) ;
end
end
end

Melden Sie sich an, um zu kommentieren.

Akzeptierte Antwort

per isakson
per isakson am 8 Mär. 2013
Or this way
>> ce = CEntity()
ce =
CEntity
Properties:
RandNumb: 92
Methods
>>
where
classdef CEntity < handle
properties
RandNumb
end
methods
function obj = CEntity
InitArray12();
end
function InitArray12( obj )
obj.RandNumb = randi( 100 );
end
end
end
Read the entry "Value or Handle Class — Which to Use" in the on-line help

Weitere Antworten (0)

Kategorien

Mehr zu Signal Reception and Recovery finden Sie in Help Center und File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by