MATLAB: Remove unwanted info from legend

format legend

The plot below have a legend with 5 data strings. However, I want to only display string 4 and 5. How do I remove the other data strings?
My code is attached.

Best Answer

Use the returned handles of the text/line objects to clear/delete those unwanted.
Or create the cell array of strings for those wanted specifically and pass to legend initially
Related Question