view octmedcouple @ 74:305b7361a5bd default tip @

showalgo: save a snapshot instead of waiting for keyboard input
author Jordi Gutiérrez Hermoso <jordigh@octave.org>
date Sun, 29 May 2016 19:05:01 -0400
parents bb3a5c43fc65
children
line wrap: on
line source

#!/usr/bin/octave -q

args = argv();
if isempty(args)
   disp("Provide input filename");
   exit(1);
endif
   
fname = args{1};
format long;
x = load(fname);
m = mc(x);
disp(m);