sympy-live icon indicating copy to clipboard operation
sympy-live copied to clipboard

The source for the code at live.sympy.org

Results 51 sympy-live issues
Sort by recently updated
recently updated
newest added

While browsing [this page](https://docs.sympy.org/1.5.1/tutorial/matrices.html#basic-operations) in the docs, I saw that trying to assign a `Matrix` object to `N` fails. [clickable](https://live.sympy.org/?evaluate=M%20%3D%20Matrix(%5B0%2C%200%2C%201%5D)%20%20%23%20works%0A%23--%0AN%20%3D%20Matrix(%5B0%2C%201%2C%201%5D)%20%20%23%20fails%0A%23--%0AN%20%3D%202%0A%23--%0AN%0A%23--%0AN%20%3D%20Matrix(%5B0%2C%201%2C%201%5D)%20%20%23%20now%20it%20works%0A%23--%0AC%20%3D%20Matrix(%5B0%2C%201%2C%201%5D)%20%20%23%20ok%0AO%20%3D%20Matrix(%5B0%2C%201%2C%201%5D)%20%20%23%20ok%0AS%20%3D%20Matrix(%5B0%2C%201%2C%201%5D)%20%20%23%20ok%0AI%20%3D%20Matrix(%5B0%2C%201%2C%201%5D)%20%20%23%20ok%0AE%20%3D%20Matrix(%5B0%2C%201%2C%201%5D)%20%20%23%20ok%0A%23--%0AQ%20%3D%20Matrix(%5B0%2C%201%2C%201%5D)%20%20%23%20fails%0A%23--%0A%23%20so%20it%20seems%20only%20N%20and%20Q%20have%20the%20problem...%0A%23--%0A) ```python >>> M = Matrix([0, 0, 1]) # works >>>...

Whenever you evaluate something it says `Error: .`. Here is an example traceback from the logs ```pytb (/base/alloc/tmpfs/dynamic_runtimes/python27g/7cb976f64e72c78c/python27/python27_lib/versions/1/google/appengine/runtime/wsgi.py:291) Traceback (most recent call last): File "/base/alloc/tmpfs/dynamic_runtimes/python27g/7cb976f64e72c78c/python27/python27_lib/versions/1/google/appengine/runtime/wsgi.py", line 273, in Handle result...

>>> import numpy # doctest:+SKIP >>> a = numpy.arange(10) # doctest:+SKIP >>> expr = sin(x) >>> f = lambdify(x, expr, "numpy") # doctest:+SKIP >>> f(a) # doctest:+SKIP Exception in SymPy...

`plot()` doesn't seem to work. Would be nice if it did. ![selection_271](https://user-images.githubusercontent.com/276007/46378710-583f6380-c651-11e8-85f7-88b1cf743b9e.png)

It'd be nice if I was on the SymPy 0.7.6 doc version, for example, that when I press "run in sympy live" on various code cells that the sympy live...

Tried running code from https://docs.sympy.org/dev/modules/physics/continuum_mechanics/beam_problems.html and I get: ![selection_270](https://user-images.githubusercontent.com/276007/46378449-7ce70b80-c650-11e8-872b-21f7d36995dd.png) Notice the superscripts are quite misaligned. Using Firefox 62 on Ubuntu 18.04.

I tried the following in SymPy Live C = 3 and it gave me the following error message: ```` Exception in SymPy Live of type for reference the last 5...

Can someone please explain the following? >>> from sympy.combinatorics.graycode import gray_to_bin,bin_to_gray >>> bin_to_gray('000000000000001111100111') '000000000000000110010110' >>> bin_to_gray('000000000000001111100110') '000000000000000110010110'

From [Docs Basic_operations.html](http://docs.sympy.org/latest/tutorial/basic_operations.html) In lambdify example: ``` Python console for SymPy 1.0 (Python 2.7.5) These commands were executed: >>> from __future__ import division >>> from sympy import * >>> x,...

Hi folks, there is something strange with plot of factor(x**4/2 + 5*x**3/12 - x**2/3). Compare it with Wolfram Alpha. Regards, Simone