Accessing Time-Scope block "Style" properties from Matlab command line
2 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Hello everybody! I'm wondering if there's a way to change line properties (the most important for me is line visibility) programmatically for the Time-Scope block in DSP System Toolbox. If there is, how?
Many thanks! Cheers, Luchka
0 Kommentare
Antworten (1)
Divyajyoti Nayak
am 3 Jun. 2025
As of R2024b, the styling properties of the 'timescope' object are accessible in MATLAB. This includes line visibility.
scope = timescope %sample timescope object
scope.LineVisible
scope.LineVisible = 'off';
scope.LineVisible
More color and styling properties of the timescope object can be found in its documentation page:
0 Kommentare
Siehe auch
Produkte
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!