Can we use aliasing concept to achieve solution for following use case in MATLAB ?

1 view (last 30 days)
We want to access same signal object and wants to access this with two different names. For example "Signal_A" is a signal which have an alias as "Alias_Signal_A".
So if value of signal "Signal_A" is updated to ‘X’, then updated value of signal shall be accessible by using both "Signal_A" or its alias "Alias_Signal_A".

Answers (1)

John D'Errico
John D'Errico on 6 Feb 2020
I suppose you could do so, by writing a custom alias class to do it. It would seem a bit of a kludge though.
But, no. MATLAB does not have any simple scheme to alias two variables, linking them directly so that one references the other, or changing one updates the other.

Categories

Find more on Complex Logic in Help Center and File Exchange

Products


Release

R2018b

Community Treasure Hunt

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

Start Hunting!