Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Undefined argument when declaring function in Octave

I get undefined variable/argument when trying to define my own random generator function.

Code:

function result = myrand(n, t, p, d)
    a = 200 * t + p
    big_rand = a * n
    result = big_rand / 10**d
    return;
endfunction

mrand = myrand(5379, 0, 91, 4)

error:

>> myrand
error: 't' undefined near line 2 column 15
error: called from
myrand at line 2 column 7
like image 315
Amir Avatar asked Oct 07 '16 10:10

Amir


1 Answers

You can't start a script with a function keyword. https://www.gnu.org/software/octave/doc/v4.0.1/Script-Files.html

This works:

disp("Running...")
function result = myrand(n, t, p, d)
     a = 200 * t + p
     big_rand = a * n
     result = big_rand / 10**d
     return;
endfunction

mrand = myrand(5379, 0, 91, 4) 

You should get:

warning: function 'myrand' defined within script file 'myrand.m'   
Running ...  
a =  91  
big_rand =  489489  
result =  48.949  
mrand =  48.949  
like image 148
Johnny Ca Avatar answered Sep 28 '22 16:09

Johnny Ca