657
edits
m (→Sketchpad) |
(pkg update) |
||
Line 50: | Line 50: | ||
# Check what kind of triangular matrix (up or low). | # Check what kind of triangular matrix (up or low). | ||
# If the argument after the str argument is a scalar, it indicates off diagonal triangular matrix (we do not have algo for that yet, though). | # If the argument after the str argument is a scalar, it indicates off diagonal triangular matrix (we do not have algo for that yet, though). | ||
=== updating pkg.m === | |||
Commands used with pkg | |||
pkg install image-* | |||
pkg load image | |||
pkg unload image | |||
pkg uninstall image | |||
pkg install -forge image | |||
pkg install -verbose -forge -nodeps signal | |||
pkg install struct-old.tar.gz | |||
pkg update struct | |||
pkg update | |||
pkg load all | |||
pkg unload all | |||
pkg list | |||
installed_packages = pkg ("list") | |||
[user_packages, system_packages] = pkg ("list") | |||
oct_forge_pkgs = pkg ("list", "-forge") | |||
pkg describe image | |||
pkg describe -verbose image | |||
pkg describe -verbose all | |||
desc = pkg ("describe", "signal", "image") | |||
[desc, flag] = pkg ("describe", "signal", "image") | |||
pkg prefix | |||
pkg prefix /tmp | |||
pfx = pkg ("prefix") | |||
pkg prefix /tmp /tmp | |||
pfx = pkg ("prefix") | |||
pkg build -verbose /tmp image-* | |||
pkg rebuild signal | |||
== Octave - Forge == | == Octave - Forge == |
edits