viewing four signals in scope
Ältere Kommentare anzeigen
I have attached a mdl in which the scope should show 3 triangular wave and a sine wave ,but i get one triangular and sine wave.
and code for triangular wave generation is
ts=0.1;tim=2
t=-tim:ts:tim
y=repmat(max(t)-abs(t),1,10)
t=-tim:ts:-tim+length(y)*ts-ts
ty=[t' y']
please help
1 Kommentar
Walter Roberson
am 9 Okt. 2012
Please read the guide to tags and retag this question; see http://www.mathworks.co.uk/matlabcentral/answers/43073-a-guide-to-tags
Antworten (1)
Ryan G
am 8 Okt. 2012
0 Stimmen
The three triangle waves, ty, are all the same and are being plotted on top of eachother. If you want to see all 3 on that plot, you can change the linestyle of the 3rd and 4th triangle wave. Do this by going to the scope parameters->style tab.
5 Kommentare
kash
am 8 Okt. 2012
Ryan G
am 8 Okt. 2012
Do you want to display 4 different axes or all 4 waves on 1 axes each below the next?
kash
am 9 Okt. 2012
Ryan G
am 9 Okt. 2012
In the scope parameter change the number of axes to 4. This will create 4 inputs to the scope. Remove the mux block and use these inputs instead.
kash
am 10 Okt. 2012
Kategorien
Mehr zu Schedule Model Components finden Sie in Hilfe-Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!