使用图形句柄就可以,把每个图片都给一个句柄。例如:subplot(121)HndA=plot(...);subplot(122)HndB=plot(...);这时如果想要删除图片A,则用命令delete(get(HndA,'parent'));就可以了。