legend problem Not enough input arguments
显示 更早的评论
The legend of the picture is chaos.
.png)
3 个评论
Walter Roberson
2019-9-2
Please show your code.
Tian Lan
2019-9-4
Walter Roberson
2019-9-4
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)
??
回答(0 个)
类别
在 帮助中心 和 File Exchange 中查找有关 Animation 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!