Hi,
I am poriting existing code to octave. One function gcf is
missing from octave. Is there a function or a way to do the similar
thing as gcf in matlab?
Also, matlab updates its setdiff function. The new setdiff
function can return a second result which contains the index.
Hopefully, octave will also update its setdiff function.
Thanks
Frank
_______________________________________________
Help-octave mailing list
address@hidden
https://www.cae.wisc.edu/mailman/listinfo/help-octave
is gcf greatest common factor? if so just google for euclid gcd the
algorithm is pretty simple. gcd(a,b) = { if a = 0, return b, else
return gcd( b%a, a) }