legend problem Not enough input arguments
Show older comments
The legend of the picture is chaos.
.png)
3 Comments
Walter Roberson
on 2 Sep 2019
Please show your code.
Tian Lan
on 4 Sep 2019
Walter Roberson
on 4 Sep 2019
Caution: your line
X=(ones(array_num,1)*10.^(SNR/20)).*a_target*randn(TargetNum,snapnum); X=A*s(10*500)
includes U+FF08 and U+FF09, which are "full width left parenthesis" and "full width right parenthesis" . It is the
X=A*s(10*500)
The two characters that show up in red here are not ( and ), they are "full width" parenthesis.
If you change that to
X=A*S(10*500)
then you have the problem that S only has 16 elements. Perhaps it is
X=A*S*(10*500)
??
Answers (0)
Categories
Find more on Animation in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!