~ubuntu-branches/debian/sid/genius/sid

« back to all changes in this revision

Viewing changes to lib/linear_algebra/misc.gel

  • Committer: Package Import Robot
  • Author(s): Felipe Sateler
  • Date: 2014-04-07 15:43:04 UTC
  • mfrom: (1.2.6)
  • Revision ID: package-import@ubuntu.com-20140407154304-21r03zdnfc571kz0
Tags: 1.0.17-1
* Take over package from pkg-gnome
* New upstream release. Closes: #716731
* Bump standards version.
* Update Vcs fields to Git.
* Move to single-debian-patch

Show diffs side-by-side

added added

removed removed

Lines of Context:
24
24
 
25
25
        else if(IsMatrix(a) and IsMatrix(b) and
26
26
                (rows(a)!=rows(b) or columns(a)!=columns(b))) then
27
 
                (error("ApplyOverMatrix2: cannot apply a function over two matrixes of different sizes");bailout);
 
27
                (error("ApplyOverMatrix2: cannot apply a function over two matrices of different sizes");bailout);
28
28
 
29
29
        if IsMatrix(a) and IsMatrix(b) then (
30
30
                r = zeros(rows(a),columns(a));