How to remove negative value at the out put..
8 ビュー (過去 30 日間)
古いコメントを表示
Please help me friends.. how to get rid of this negative values..?
0 件のコメント
回答 (1 件)
Image Analyst
2015 年 4 月 24 日
What does "get rid of" mean? Do yoiu want to change the limits of the y axis? Do you just want to get new data values by subtracting the min from all your data:
y = y - min(y);
Do you just want to remove negative values from the data:
y(y<0) = [];
5 件のコメント
Jakey Wang
2020 年 3 月 20 日
The second code is actually so good. I used it in my coursework. Thank you!!
参考
カテゴリ
Help Center および File Exchange で Multicore Processor Targets についてさらに検索
製品
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!