Removing values from plot and applying curve

1 visualizzazione (ultimi 30 giorni)
I want to remove the values situated on y=0 and x=0. How can I do this?
Is there a way to translate this into a curve somehow?
D:34213580x1 double
I3:34213580x1 double
figure
plot(I3,D,'.')

Risposta accettata

Benjamin Großmann
Benjamin Großmann il 28 Apr 2021
Modificato: Benjamin Großmann il 29 Apr 2021
You can remove values from an array by setting them to empty. Use logical indexing to address the values that you want to delete.
D_IdxToDelete = D == 0; % or "D_IdxToDelete = D <= DLIM;" if you do not have exact zeros and want to specify margins
I3_IdxToDelete = I3 == 0; % or "I3_IdxToDelete = I3 <= I3LIM;" if you do not have exact zeros and want to specify margins
% Use "&" (and) or | (or) to combine different logical index arrays
% Idx to delete when D OR I3 is zero.
IdxToDelete = D_IdxToDelete | I3_IdxToDelete;
% delete the entries
D(IdxToDelete) = [];
I3(IdxToDelete) = [];

Più risposte (0)

Categorie

Scopri di più su Line Plots in Help Center e File Exchange

Prodotti


Release

R2019b

Community Treasure Hunt

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

Start Hunting!

Translated by