How can i change this plot to be be in this form
1 回表示 (過去 30 日間)
古いコメントを表示
Please, how can i make the 2D plot (attached image -row plot) appear like any of the signal plots(attached image -signal) in the other image. kindly simplify codes, as I am new to MAtlab
0 件のコメント
回答 (1 件)
Adam Danz
2018 年 7 月 23 日
編集済み: Adam Danz
2018 年 7 月 23 日
If you'd like to make a subplot,
figure
subplot(4,1,1) % see help subplot
plot(row_data)
title('My row plot')
xlabel('time (ms)')
ylabel('Amplitude (v)')
8 件のコメント
Adam Danz
2018 年 7 月 24 日
M is a 3D array but the size of each dimension is (10,10,30). An RGB matrix would have 3 columns, not 10.
Here's a plot of your code (in blue) and my code (in red). The only thing I changed in my code was the line style.
It plots the peaks in a straight line.
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/192719/image.jpeg)
参考
カテゴリ
Help Center および File Exchange で Spectral Measurements についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!