David Contreras
David Contreras
It would be nice to index with an array of booleans, I'm including some examples and reasoning. ```python a = [4, 5, 6] a[[true, false, true]] # I would like...
When evaluating with multiple expressions and one of them has an error: `math.evaluate(["1+1","2+"])` The error is: `SyntaxError: Unexpected end of expression (char 3)` I would like to know which is...
When using math.import and importing a function I would like for it to work with the help function ``` javascript // define new functions and variables math.import({ myvalue: 42, hello:...
Hello all, I was navigating on the examples and found a small issue. On https://starboard.gg/#python On last cell, third line there is a syntax error ```py url = ""https://raw.githubusercontent.com/selva86/datasets/master/mpg_ggplot2.csv" ```...
I was reading the docs regarding [Standard Library](https://observablehq.com/@observablehq/stdlib), at the end there is a suggestion to come here to discuss our favorite libraries so here I am. As a mechanical...
Hi, This initial commit is intended for exploration of #2838. It overwrites the current `nearlyEqual` completely to be as similar to python's [Math.isclose](https://docs.python.org/3/library/math.html#math.isclose) as possible (according to the description in...
Hi, this is an interactive Lorenz Attractor example according to #3147 The code for the interactivity seems complicated, so I think it was a good idea to separate the example.
Hi, In versiones newer than 11.4.1 the comparison of temperatures is incorrect between some temperature units when an offset is involved. ```jl lowTemp = 9 degC; highTemp = 10 degC;...
In the parser a matrix with trailing commas (final commas) has the following error ```py [1, 2, ] # yields SyntaxError: Value expected (char 8) ``` But objects with trailing...
### Description This fixes #4451 so that CoolProp doesn't throw a Fatal Error to Pyodide The solution was found and proposed by hoodmane at #4451 Included tests and added a...