octave-maintainers
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Symbolic solve compatibility tests


From: Mike Miller
Subject: Symbolic solve compatibility tests
Date: Sat, 8 Jul 2017 10:07:51 -0700
User-agent: NeoMutt/20170609 (1.8.3)

Can someone with access to Matlab's Symbolic Toolbox test the following
different ways of calling solve:

  syms x y
  [X, Y] = solve (x*x == 4, x == 2*y, x, y)
  [X, Y] = solve (x*x == 4, x == 2*y, [x, y])
  [X, Y] = solve ([x*x == 4, x == 2*y], [x, y])
  [X, Y] = solve ([x*x == 4, x == 2*y], x, y)
  [X, Y] = solve ({x*x == 4, x == 2*y}, {x, y})
  [X, Y] = solve ({x*x == 4, x == 2*y}, [x, y])

Octave supports the first form, but currently not the others.

-- 
mike



reply via email to

[Prev in Thread] Current Thread [Next in Thread]