Hide some points from graph plot

MATLAB programming related topics
Post Reply
User avatar
amh
Site Admin
Posts: 263
Joined: Thu Jan 06, 2022 12:35 am

Hide some points from graph plot

Post by amh »

Put these line with your selected points before plot

Code: Select all

x_data (1:3) = [];
y_data (1:3) = []; 
Post Reply