How to obtain data which fall outside the limits of the scatter plots?
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
Pratheek Manangi
am 6 Jun. 2017
Beantwortet: Steven Lord
am 6 Jun. 2017
I have a set of data in a scattered diagram and I need to put limits to it. I want to collect values which lie outside the plot. Is there any code for that?
0 Kommentare
Akzeptierte Antwort
dpb
am 6 Jun. 2017
If the red line is computed at the same points as the other data, then simply
ix=ltbluepoints>redpoints; % logical vector of those exceeding the redline
ptsOver=ltbluepoints(ix); % and the values associated
"ltbluepoints" and "redpoints" are the variables you've used for those two portions of the figure.
0 Kommentare
Weitere Antworten (1)
Steven Lord
am 6 Jun. 2017
You may be able to use the isoutlier function to identify those points with values that are too large.
0 Kommentare
Siehe auch
Kategorien
Mehr zu Scatter Plots finden Sie in Help Center und File Exchange
Produkte
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!