Info

この質問は閉じられています。 編集または回答するには再度開いてください。

how to find the curve I want by using algos?

1 回表示 (過去 30 日間)
Zheng
Zheng 2013 年 11 月 12 日
閉鎖済み: MATLAB Answer Bot 2021 年 8 月 20 日
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.

回答 (1 件)

Image Analyst
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

この質問は閉じられています。

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by