contributed by < charliechiou >
第一週測驗題
測驗 1
延伸問題 1
解釋上方程式碼運作原理
"a pointer to a pointer" 使用 pointer 指向想要操作的指標,避免了類似一次一次把 current point 指向下一個節點的這種操作。先定義所用到的結構
#include <stddef.h>
Charlie Chiou changed a month agoView mode Like Bookmark
contributed by < Po-Ying,Chiu >
1D discrete convolution
Description:
1D Discrete Convolution is an operation used in signal processing and neural networks to extract features from sequential data like time series or audio.
A filter slides over the input, multiplying and summing values to extract the features, making it useful in tasks like speech recognition and text analysis.
For every input x[n] we can represent it as
$$
Charlie Chiou changed 6 months agoEdit mode Like Bookmark