Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Hi,
I have created scripts to transform the structure of the package into the one used in Octave-Forge.
I have also included a Makefile that allows to do a package that can be installed from the Octave prompt (not in windows)
pkg install ekfukf-<version>.tar.gz
Once this is done the package can be loaded and unloaded into octave using
pkg load ekfukf
pkg unload ekfukf
When the package is in a final form it can be submitted to Octave-Forge as an external package, when hosted there user will be able to do
pkg install -forge ekfukf
to download and install the latest release of the package.
The OF package needs the following files
citation ekfukf
in the Octave promptIf you have access to a linux machine and you have installed octave (at least 4.0, but recommended is 4.2.1 (latest stable release)) you can try the following:
./do_ekfukf_pkg.sh
This will create a folder with the structure of an OF package, default is ekfukf_of
cd ekfukf_of
) runmake install
This will install the package in the octave search path (where exactly depend son your .octaverc, you can change the location using
pkg prefix
)Let me know if you find anything you would like to change.
Regards,