フィルターのクリア

Problem with multiple values on plot

1 回表示 (過去 30 日間)
Catherine
Catherine 2017 年 2 月 28 日
コメント済み: David Goodmanson 2017 年 2 月 28 日
Hi guys, I am having problem with repeated values on my plot.
Here is my code regarding the plot:
plot(L_value,Temp_Lfile)
title('Intensity profile','fontsize',18)
xlabel('Wavelength (nm)','fontsize',18)
ylabel('Intensity','fontsize',18)
set(gca,'fontsize',18)
[L_pks,L_locs] = findpeaks(Temp_Lfile);
L_val = L_value(L_locs);
text(L_val,L_pks,num2str(L_val),'fontsize',12);
Both my L_val and L_pks variables are only 1x8 matrix. So, there should only be 8 numbers on the plot. Which part of my code is incorrect?
Thanks guys!
  2 件のコメント
KSSV
KSSV 2017 年 2 月 28 日
Have you tried with [L_pks,L_locs] = findpeaks(L_value,Temp_Lfile); ?
Catherine
Catherine 2017 年 2 月 28 日
Hi KSSV, thanks for your reply. Here is the error message if I did what you suggested:
Error in findpeaks (line 59)
[X,Ph,Pd,Th,Np,Str,infIdx] = parse_inputs(X,varargin{:});
Error in Simulation_L_fix_mica (line 86)
[L_pks,L_locs] = findpeaks(L_value,Temp_Lfile);

サインインしてコメントする。

採用された回答

David Goodmanson
David Goodmanson 2017 年 2 月 28 日
編集済み: David Goodmanson 2017 年 2 月 28 日
Hello Catherine, The last line will probably work if changed to
text(L_val,L_pks,num2str(L_val'),'fontsize',12);
this is because num2str of a row vector is one long string, which gets reused every time. num2str of a column vector is a column matrix of shorter strings, so text cycles through them.
  2 件のコメント
Catherine
Catherine 2017 年 2 月 28 日
Indeed! It worked perfectly! Thanks heaps David!
David Goodmanson
David Goodmanson 2017 年 2 月 28 日
you're welcome; it's good to hear that it worked.

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeLogical についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by