Question

hi i was using the following

h = modem.oqpskmod; 

but it constructs it with default settings, i wanted to model zigbee one which is oqpsk with half sine waves... how could i do it? thanks a lot!

No correct solution

OTHER TIPS

I think you can try this

 h = modem.oqpskmod('M',4,'SymbolOrder','Gray','InputType','Bit');
 Data = randint(10000,1);
 output = modulate(h,Data);
 plot(output, 'DisplayName', 'output', 'YDataSource', 'output'); figure(gcf)

You can see that the output is and compare it with the graph in there.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top