Recent content by elham

  1. E

    MATLAB Converting 2D MATLAB plot to 3D with three cost dimensions

    Hi Friends, The code below is for 2D ploting in Matlab, I want to change it in 3D, please if anyone know how to do this.let me know thanks in advancefigure(1); popcosts=[pop.Cost]; repcosts=[rep.Cost]; plot(popcosts(1,:),popcosts(2,:),'b.'); hold on; plot(repcosts(1,:),repcosts(2,:),'r*'); hold...