Filter löschen
Filter löschen

How to do a stem plot for a 4x100 vector value?

1 Ansicht (letzte 30 Tage)
Ethan Woodvine
Ethan Woodvine am 20 Sep. 2022
Kommentiert: Chunru am 20 Sep. 2022
Hi Yall Im very rusty with matlab and Im still quite lost on how to do this
I have this code right now, it woked when i only had one traffic, but now i have 4, all but into the vector x, but I dont know how to seperatly do them all, I know I will need a for loop but thats it, I tried to look up how, but Ive come up short.
N=4; %Nodes number
G=1.0; %Total traffic intensity
p=G/N; %Traffic intensity per node
Tics=100; %The number or clock ticks to simulate
x=rand(N,Tics)<p; %This vector will hold the traffic
stem(x)
ylim([0 1.5])
xlim([0 100])

Akzeptierte Antwort

Chunru
Chunru am 20 Sep. 2022
Bearbeitet: Chunru am 20 Sep. 2022
N=4; %Nodes number
G=1.0; %Total traffic intensity
p=G/N; %Traffic intensity per node
Tics=100; %The number or clock ticks to simulate
x=rand(N,Tics)<p; %This vector will hold the traffic
for i=1:N
subplot(N, 1, i)
stem(x(i, :))
ylim([0 1.5])
xlim([0 100])
end
  2 Kommentare
Ethan Woodvine
Ethan Woodvine am 20 Sep. 2022
Thanks this is great to know!
But i need to make 4 seperate stem plots.
So subplot them. to show 4 seperate graphs is there a way to do that?
Chunru
Chunru am 20 Sep. 2022
See the updated.

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (0)

Kategorien

Mehr zu Clocks and Timers finden Sie in Help Center und File Exchange

Tags

Produkte


Version

R2021b

Community Treasure Hunt

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

Start Hunting!

Translated by