MATLAB: Removing 1 column of ydata

deleteeditplottingremovescriptydata

Hi there, I was wondering if there was a way to delete a single column of ydata in a plot without having to do it manually each time?
Thanks, Ben

Best Answer

... Just don't plot it?
not_col = 7; %for example

yt = ydata;
yt(:,not_col) = [];
plot(yt)
or
not_col = 7; %for example
plot( ydata(:, setdiff(1:size(ydata,2), not_col) ))