Save marked point on plot
5 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Anton Vernytsky
el 12 de Mzo. de 2022
Editada: Scott MacKenzie
el 12 de Mzo. de 2022
Hello,
I would like to save the the x and y values of the marked point on the plot.
Can someone explain me please how to write a code or what functions can i use.
Thank you !
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/924714/image.jpeg)
0 comentarios
Respuesta aceptada
Scott MacKenzie
el 12 de Mzo. de 2022
Editada: Scott MacKenzie
el 12 de Mzo. de 2022
OK, this seems to to work. The x-y coordinates of the marked points are output to the command window (along with the figure number). For brevity, I'm just showing the result for the 1st data set.
format shortg
xlsdata=xlsread('temp.xlsx'); % this is the data in your ForDataMining.xlsx file
Wavelength=xlsdata(2:2152);
for i=1:1 % first data set only, adjust as desired
reflection = xlsdata(2:2152,i+1);
lmin = islocalmin(reflection,"MinProminence",0.01,"MinSeparation",100);
% get x-y coordinates of minima
x = Wavelength(lmin)';
y = reflection(lmin);
figNumber = repmat(i, numel(x), 1);
[figNumber x y] % output in command window (include figure number)
figure(i) % put figure statement here
plot(Wavelength,reflection,Wavelength(lmin),reflection(lmin),'ro')
title('Relative Reflectance-Wavelength')
xlabel('Wavelength[nm]')
ylabel('Relative Reflectance')
grid on
grid minor
end
2 comentarios
Más respuestas (1)
Scott MacKenzie
el 12 de Mzo. de 2022
Editada: Scott MacKenzie
el 12 de Mzo. de 2022
Since you haven't provided any data or code, this is a rough answer only:
[pks, locn] = findpeaks(-y, 'MinPeakProminence', 0.1);
Using -y will give you the valleys, which is what you are after. You'll need to play with the peak prominence value to the get the valleys you want and exclude those you don't want. Then, you need to take the negative of pks to get the actual y values of the valleys. You can use locn to retrieve the corresponding x values.
4 comentarios
Ver también
Categorías
Más información sobre Specifying Target for Graphics Output en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!