Looking for a variation of waterfall plot in matlab

后端 未结 2 455
故里飘歌
故里飘歌 2021-01-14 00:08

I have a 3-dimensional data to be plotted in matlab. The data set are built by stacking 10 exponential curves with different parameters along y directions such as



        
2条回答
  •  花落未央
    2021-01-14 00:48

    i know this is an old post, but the below will make the region under the curve transparent:

    figure;
    [X,Y,Z] = peaks(10);
    handle_figure = waterfall( X, Y, Z );
    set( handle_figure, 'FaceColor', 'none' );
    

提交回复
热议问题