I don't get plot in matlab
2 ビュー (過去 30 日間)
古いコメントを表示
len=128;
m=4;
msg1=randint(len,1,m);
msg2=randint(len,1,m);
% figure(1)
% stem(data_source);
% grid on;
% xlabel('data points')
% ylabel('transmitted data phase representation')
% title('Transmitted Data "O"')
WHy i don't get plot representation in my matlab
0 件のコメント
採用された回答
その他の回答 (2 件)
Walter Roberson
2012 年 2 月 27 日
All of your plotting commands are commented out.
2 件のコメント
Walter Roberson
2012 年 2 月 27 日
% is the character that indicates that everything to the end of the line is to be treated as a comment. Nearly all of your lines were commented out, turned in to in-active text for the programmer's reading pleasure rather than something the computer is intended to execute.
参考
カテゴリ
Help Center および File Exchange で Get Started with MATLAB についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!