Getting the "oil" undefined "error in Octave, how to fix it?
2 answers
You seem to have forgotten to download the signal package . You must install and download it to use the function butter
:
pkg install -forge signal
pkg load signal
[b,a] = butter (5,0.2);
Please take a look at the Octa documentation. It explains how to install and how to download packages.
+3
source to share