sigmoid函數和tanh函數 matlab實現

logsig函數即是logistic Regression(邏輯迴歸)中的sigmoid函數。 logsig函數表達式爲: matlab實現: figure('NumberTitle', 'off', 'Name', 'logsig函數'); x=-10:0.1:10; y= 1 ./ (1 + exp(-x)); plot(x,y); xlabel('X軸');ylabel('Y軸');%座標軸
相關文章
相關標籤/搜索