Info

This question is closed. Reopen it to edit or answer.

how to find the curve I want by using algos?

1 view (last 30 days)
Zheng
Zheng on 12 Nov 2013
Closed: MATLAB Answer Bot on 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.

Answers (1)

Image Analyst
Image Analyst on 12 Nov 2013
Edited: Image Analyst on 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!