I need to define a class called MobileBaseStation and a property called DataChannel which is a struct as shown below,
classdef MobileBaseStation
properties
DataChannel = struct('TxScheme','SpatialMux','NLayers',4);
end
properties (Constant = true)
supportedTxSchemes = {'Port0','TxDiversity','CDD','SpatialMux','MultiUser','Port5','Port7-8','Port8','Port7-14'};
end
methods
function this = MobileBaseStation(this,TxSchemeChoice,NLayers)
this.DataChannel.TxScheme = TxSchemeChoice;
this.DataChannel.NLayers = NLayers;
end
function this = set.DataChannel.TxScheme(this,value)
if ismember(value,this.supportedTxSchemes)
this.DataChannel.TxScheme = value;
end
end
function this = set.DataChannel.NLayers(this,value)
if strcmpi(this.TxScheme,'Port8') && value==1
set.DataChannel.NLayers = value;
end
end
end
end
The setters are required to enforce bounds/restriction for the fields of the DataChannel structure. I want the fields of the structure to be properties of the MobileBaseStation class so that I can use setters. How can I achieve this in Matlab?
I think you'd want to make
DataChannel
private so you can control access via your dependent property getters & setters, eg: