Re: help me for work with Octave
Nicholas Jankowski <[email protected]>
| Newsgroups | gmane.comp.gnu.octave.general |
|---|---|
| Message-ID | <CABNpfR86T5a87EawvOaj7BgWCkPw3dTeKBDHjtt7=b57NppjsA@mail.gmail.com> |
> > The 'tf' function belongs to the control package from Octave Forge which > you have installed but not loaded. To load the package, run 'pkg load > control' from the Octave prompt. > The message tells you how to fix your problem. Octave packages are not loaded by default because some can change otherwise expected octave behavior. So you must load the package first. pkg load control will load the package and let you run the tf function. >