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!