3 回答

TA貢獻1712條經驗 獲得超3個贊
這種延遲向量有時也稱為閾值或偏移量。相當于輸入向量與輸出向量之間的變換或函數關系所帶的常數項,如同y=ax+b、y=f(x)+b、y=f(wx+b)等表達式中的向量b。

TA貢獻1828條經驗 獲得超3個贊
newlin(PR,S,ID,LR)中的PR是什么意思?
PR 輸入范圍 可以通過minmax(p)確定
PR現在已經不在用了 從R2008a開始 統一格式為:NEWLIN Create a linear layer. Syntax net = newlin(P,S,ID,LR) net = newlin(P,T,ID,LR) Description Linear layers are often used as adaptive filters for signal processing and prediction. NEWLIN(P,S,ID,LR) takes these arguments, P - RxQ matrix of Q representative input vectors. S - Number of elements in the output vector. ID - Input delay vector, default = [0]. LR - Learning rate, default = 0.01; and returns a new linear layer.

TA貢獻1942條經驗 獲得超3個贊
newlin 創建一線性層,newlin(PR,S,ID,LR)
PR -- 二維矩陣,指出輸入的最大和最小值 S -- 輸出的個數
ID -- 輸入延遲矩陣, 系統默認值為[0] LR -- 學習速率,系統默認值為 0.01
具體查某個函數的含義,可以在matlab中輸入help+所查的函數名,回車,就會出現所查函數的解釋。
添加回答
舉報