The Wayback Machine - https://web.archive.org/web/20220227164635/https://github.com/topics/symbolic-computation
Skip to content
#

symbolic-computation

Here are 138 public repositories matching this topic...

Run, compile and execute JavaScript for Scientific Computing and Data Visualization TOTALLY TOTALLY TOTALLY in your BROWSER! An open source scientific computing environment for JavaScript TOTALLY in your browser, matrix operations with GPU acceleration, TeX support, data visualization and symbolic computation.

  • Updated Feb 19, 2022
  • TypeScript
aesara
ricardoV94
ricardoV94 commented Feb 21, 2022

Squeeze does not seem to do anything when axis is negative:

import aesara.tensor as at
at.squeeze(at.as_tensor_variable([1]), axis=-1).eval()
# array([1])
at.squeeze(at.as_tensor_variable([[1]]), axis=-1).eval()
# array([[1]])

This doesn't happen with positive axis:

at.squeeze(at.as_tensor_variable([1]), axis=0).eval()
# array(1)
at.squeeze(at.as_tensor_variable
brandonwillard
brandonwillard commented Jul 24, 2019

As a convenience, we should provide meta tensor implementations of the following:
__add__, __radd__, __sub__, __rsub__, __mul__, __rmul__, __div__, __rdiv__, __truediv__, __rtruediv__, __floordiv__, __rfloordiv__, __mod__, __rmod__, __lt__, __le__, __gt__, __ge__, __and__, __rand__, __or__, __ror__, __xor__, __rxor__, __getitem__, __pow__, `__rp

Improve this page

Add a description, image, and links to the symbolic-computation topic page so that developers can more easily learn about it.

Curate this topic

Add this topic to your repo

To associate your repository with the symbolic-computation topic, visit your repo's landing page and select "manage topics."

Learn more