Removing values from plot and applying curve

1 次查看(过去 30 天)
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,'.')

采纳的回答

Benjamin Großmann
Benjamin Großmann 2021-4-28
编辑:Benjamin Großmann 2021-4-29
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) = [];

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Line Plots 的更多信息

标签

产品


版本

R2019b

Community Treasure Hunt

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

Start Hunting!

Translated by