Friend Function implementation in MATLAB
22 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Subhajyoti
le 1 Août 2024
Modifié(e) : Pavan Sahith
le 2 Août 2024
Typically, the private properties of a class are not accessible by any other class or function from outside.
But, a friend function can be granted special access to private and protected members of a class in C++.
For further reference: https://en.cppreference.com/w/cpp/language/friend
Is there any way, I can implement this in MATLAB?
It would be really helpful if anyone could provide a sample code illustrating the implementation in MATLAB.
Thanks in advance.
0 commentaires
Réponse acceptée
Pavan Sahith
le 1 Août 2024
Modifié(e) : Pavan Sahith
le 2 Août 2024
Hello ,
I see that you are trying to achieve similar functionality of C++ friend functions in MATLAB.
In MATLAB, you can grant specific classes access to private properties and methods of another class by using access control lists. This might be helpful for your needs.
Referring to the following MATLAB answer post and MathWorks documentation will help
0 commentaires
Voir également
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!