1. 程式人生 > >MATLAB plot()、scatter()的RGB顏色設定以及生成漸變色

MATLAB plot()、scatter()的RGB顏色設定以及生成漸變色

1.轉載:https://blog.csdn.net/wh1312142954/article/details/80796764 

plot(x,y,'Color',[R G B]);%只要設定顏色中RGB的值就可以得到不同的顏色。

2.轉載:https://blog.csdn.net/guyuealian/article/details/78845031 

將資料x歸一化到任意區間[ymin,ymax]範圍的方法
輸入引數x:需要被歸一化的資料
輸出引數y:歸一化到區間[ymin,ymax]的資料
y = (ymax-ymin)*(x-xmin)/(xmax-xmin) + ymin;