Davide Sandonà

Results 31 issues of Davide Sandonà

**Is your feature request related to a problem? Please describe.** I just installed Nomacs on a Windows 10 laptop, which comes with a decent trackpad and a handful of useful...

enhancement

Is there any way to display changes within a relation? It would be nice if it was possible to have a visual diff for tag changes on relation objects.

feature

### Software versions Python version: 3.10.12 Bokeh: 3.4.1 ### Browser name and version _No response_ ### Jupyter notebook / Jupyter Lab version _No response_ ### Expected behavior I expect the...

type: feature
tag: contour

Consider this example: ```py from sympy import * from algebra_with_sympy import Eqn, solve, algwsym_config algwsym_config.output.label = False algwsym_config.output.solve_to_list = True init_printing() xi, wn = symbols("xi omega_n", real=True, positive=True) Tp, Ts...

enhancement

Seems like `libwebkit2gtk` has been wiped [from Ubuntu 22.04](https://answers.launchpad.net/ubuntu/noble/arm64/libwebkit2gtk-4.0-37), which means `squirrel-disk` is unable to launch: `deb` file doesn't install. AppImage is integrated in the system but it doesn't launch:...

#### ALL software version info OS: Ubuntu 22.04 Python: 3.10.12 Panel: 1.4.0 Bokeh: 3.4.0 #### Description of expected behavior and the observed behavior I developed a package that creates interactive...

type: bug

It appears that I have found a bug when using `customdata` with `go.Surface`. In the following example, I have discretized two directions with a different number of points. The tooltip...

sympy 1.13.2. I'm currently dealing with a dynamical system and I need to extract some numerical information. I usually use `cse=True` with `lambdify`, but this time it fails: ```py from...

utilities.lambdify

On Jupyter Notebook, when I attempt to show a vector and a dyadic on the same cell, I get the following error: ```py from sympy import * from sympy.physics.mechanics import...

physics.mechanics
printing.pretty

```py from sympy import * from sympy.vector import vector_integrate, ImplicitRegion var("x, y") region = ImplicitRegion((x, y), Eq(x**2 + y**2, 4)) # compute perimeter vector_integrate(1, region) # 4*pi ``` ```py region...