Why doesn't the DMODCE function take in a matrix input when using it for MSK Modulation in the Communications Toolbox 2.0 (R12.1)?
Show older comments
When I run the following code:
M = 2; % states in the modulation
Fd = 1E3; % data rate
Fs = 10E3; % set the sample frequency
Nd = 12; % set the number of data points
MsgData = randint(Nd,3,M);
Envelope = dmodce(MsgData,Fd,Fs,'msk');
I get the following error:
??? Error using ==> vertcat
All rows in the bracketed expression must have the same
number of columns.
Error in ==> D:\R12.1\toolbox\comm\comm\dmodce.m
On line 198 ==> x = [0; x(1:end-1)];
Accepted Answer
More Answers (0)
Categories
Find more on Modulation in Help Center and File Exchange
Products
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!