Info

Diese Frage ist geschlossen. Öffnen Sie sie erneut, um sie zu bearbeiten oder zu beantworten.

how to find the curve I want by using algos?

1 Ansicht (letzte 30 Tage)
Zheng
Zheng am 12 Nov. 2013
Geschlossen: MATLAB Answer Bot am 20 Aug. 2021
Does anyone know how to find the curve I want by using algos? For example, I want to use a algo to extract the curve 2 (blue one) from 3 curves.
Thanks in advance.

Antworten (1)

Image Analyst
Image Analyst am 12 Nov. 2013
Bearbeitet: Image Analyst am 12 Nov. 2013
This isn't an image is it? You actually have 1D signals in arrays that you plotted, right? Like
plot(signal1Red, 'r-');
hold on;
plot(signal2Cyan, 'b-');
plot(signal3Pink, '-', 'Color', [1 .8 .8]);
So in that case, I don't know what you mean by extract curve 3 by using all three curves. You have the signal in an array so you already have it "extracted" before you even plot it.
If you mean that you have a paper with those plots on it and you need to turn it into arrays, then you can scan in the paper and use this: http://www.mathworks.com/matlabcentral/fileexchange/36904-matlab-script-for-digitizing-a-published-graph

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by