공학/공학일반

Octave Package 설치

Begi 2023. 2. 25. 11:50
반응형

Control 관련 함수를 사용하려고 하면 다음과 같은 메세지가 뜨면서 실행되지 않는다.

 

>> tfwarning: the 'tf' function belongs to the control package from Octave Forge whichyou have installed but not loaded.  To load the package, run 'pkg loadcontrol' from the Octave prompt.
Please read <https://www.octave.org/missing.html> to learn how you cancontribute missing functionality.error: 'tf' undefined near line 1 column 1

 

pkg list를 입력하면 현재 설치된 패캐지 리스트를 보여준다. Package Name에 Control이 있는지 확인하다. 그리고, pkg load control을 입력하면 Control 관련 함수를 사용할 수 있다.

 

pkg update를 입력하면 패캐지를 최신 버전으로 업데이트 한다.

 

반응형