In the adsbexample.m script I'm getting an error: Array indices must be positive integers or logical values. Error in comm.internal.SignalSourceController/getSignalSource (line 181) obj.RadioAddress = radioAddress{radioNum};
2 次查看(过去 30 天)
显示 更早的评论
采纳的回答
KSSV
2019-1-1
Check the variable radioNum ...it might be either negative or double 0....MATLAB accepts only posititve integers as indices...zero cannot be an index.
A = rand(10,1) ;
A(1) % no error
A(logical(0)) % no error because index can be logical 0 / 1
A(-1) % error becuase index cannot be negative
A(0) % error because index cannot be zero (double)
0 个评论
更多回答(1 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Communications Toolbox 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!