legend problem Not enough input arguments
Afficher commentaires plus anciens
The legend of the picture is chaos.
.png)
3 commentaires
Walter Roberson
le 2 Sep 2019
Please show your code.
Tian Lan
le 4 Sep 2019
Walter Roberson
le 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)
??
Réponses (0)
Catégories
En savoir plus sur Animation dans Centre d'aide et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!