Mercurial > hg > octave-nkf
view test/classes/@Snork/ge.m @ 20830:b65888ec820e draft default tip gccjit
dmalcom gcc jit import
author | Stefan Mahr <dac922@gmx.de> |
---|---|
date | Fri, 27 Feb 2015 16:59:36 +0100 |
parents | b1283d4c06c2 |
children |
line wrap: on
line source
function b = ge (s1, s2) x1 = double (s1); x2 = double (s2); b = (x1(1) >= x2(1)); end