필터 지우기
필터 지우기

Can class/object parameters store structs? If not, is there an equivalent?

조회 수: 1 (최근 30일)
I am trying to usefully name internal state variables in a class I am writing (disclaimer: I started doing objected oriented coding yesterday). I have successfully stored scalars and strings in the class/object properties, but I was trying to store a group of memory locations like:
MemLoc.GainArray = [];
MemLoc.OffsetArray = [];
MemLoc.ConvolverMatrix = [];
MemLoc.ConvolverGain = [];
MemLoc.IntegrationTime = [];
Unfortunately, having the period in the name (as happens with a struct) causes an error in matlab. How can I store a struct such as this in an object parameter?

채택된 답변

Daniel Shub
Daniel Shub 2011년 9월 29일
The answer is yes you can. Where are you trying to do this? It looks like maybe in the properties section of your classdef file. You need to use the struct function to initialize it, or initialize it in the constructor method.
  댓글 수: 1
Sean
Sean 2011년 9월 30일
Thank you for answering. I was indeed trying to set the struct values in the properties section using the same syntax that I normally would at the command line. I didn't even realize there was a struct() command until you mentioned it.

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

추가 답변 (1개)

Gaganjyoti Baishya
Gaganjyoti Baishya 2020년 6월 20일
Yes definitely you can. I was also wanting the same to be done. So you just need to declare that struct variable inside the properties section and initialise it's value in the constructor of the class.
Something like this:
properties
myStruct;
end
methods
function obj = myClass(obj)
obj.myStruct.myField = 1;
end
end

카테고리

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

Community Treasure Hunt

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

Start Hunting!

Translated by