Could somebody please help me with Object-Oriented Programming in MATLAB?

4 vues (au cours des 30 derniers jours)
Susan
Susan le 24 Juin 2021
Modifié(e) : Susan le 25 Juin 2021
Hi All,
I am working on a script that call a "classdef" function and I need to have access to a value in this "classdef". Could sombody please tell me how I can do that? Any tutorial/good references to help me to learn/underestand this class definition would be appreciated too.
Here is one classdef example from MATLAB
classdef helperBLEChannelClassification < ble.internal.ConfigBase
properties
.......
end
methods
function classifyChannels(obj, connectionConfig)
per = .....
end
end
% SL: Snipped the rest
end
[SL: Please do not post the full text of MathWorks functions or classes.]
In the main script (link to the example ) this helper function is called as
channelClassification = helperBLEChannelClassification(...)% With the desired inputs
However, I'd like to get the "per" value in the "function classifyChannels(obj, connectionConfig)" as an output whenever I call this "channelClassification" function. Any idea?
Many many thanks in advance
  3 commentaires
Steven Lord
Steven Lord le 24 Juin 2021
Since this is a helper function for an example, you could just link to the example and state which of the helper classes you're interested in.
Posting just the function declaration line (the one that starts with the function keyword) for the method in which you're interested should be okay, to show the signature of the method.
Susan
Susan le 24 Juin 2021
Got you! Thanks.

Connectez-vous pour commenter.

Réponses (0)

Catégories

En savoir plus sur Software Development Tools dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by