How to remove negative value at the out put..
7 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Please help me friends.. how to get rid of this negative values..?
0 comentarios
Respuestas (1)
Image Analyst
el 24 de Abr. de 2015
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 comentarios
Jakey Wang
el 20 de Mzo. de 2020
The second code is actually so good. I used it in my coursework. Thank you!!
Ver también
Categorías
Más información sobre Multicore Processor Targets en Help Center y File Exchange.
Productos
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!