Changes between Version 2 and Version 3 of DSP/Interpolation


Ignore:
Timestamp:
Aug 4, 2015, 6:35:32 AM (9 years ago)
Author:
dlambros
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • DSP/Interpolation

    v2 v3  
    5454== Interpolation of a Sinusoidal Wave with Octave ==
    5555
     56
     57== Troubleshooting ==
     58
     59=== Audio Package ===
     60If your receive an error stating that you don't have the audio package in Octave you will need to install the following package.
     61
     62{{{
     63sudo octave
     64pkg install -forge audio
     65}}}
     66
     67If this tells you to install liboctave-dev, in a different terminal enter
     68
     69{{{
     70sudo apt-get install liboctave-dev
     71}}}
     72
     73then retry the above steps for package installation.
     74
     75To verify that you have the package installed you can enter
     76
     77{{{
     78pkg list
     79}}}
     80
     81and should see the following
     82
     83[[Image(pkglist.png, 650px)]]
     84
     85
     86The audio package uses external software to play and record audio. The following should be sufficient.
     87
     88{{{
     89sudo apt-get install sox
     90}}}
     91 
     92=== Signal Package ===
     93If you receive the following error
     94
     95[[Image(fir1_err.png, 650px)]]
     96
     97you will need to install the signal package.
     98
     99To install the signal package you will need to use the following commands
     100{{{
     101sudo octave
     102pkg install -forge signal
     103}}}
     104
     105If you receive the following error:
     106[[Image(signal_err.png, 650px)]]
     107you will need to install the control package with the command
     108{{{
     109pkg install -forge control
     110}}}
     111Then redo the package installation for the signal package.