Info
此问题已关闭。 请重新打开它进行编辑或回答。
how to find the curve I want by using algos?
1 次查看(过去 30 天)
显示 更早的评论
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.
0 个评论
回答(1 个)
Image Analyst
2013-11-12
编辑:Image Analyst
2013-11-12
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
0 个评论
此问题已关闭。
另请参阅
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!