Yotam Gingold
Yotam Gingold
I can't subscript an expression by putting parentheses around it: ``` given D ∈ ℝ^(m × n) v ∈ ℝ^n a = ∑_i ( Dv )_i ``` [Try it](https://iheartla.github.io/iheartla/?code=given%0AD+%E2%88%88+%E2%84%9D%5E%28m+%C3%97+n%29%0Av+%E2%88%88+%E2%84%9D%5En%0A%0Aa+%3D+%E2%88%91_i+%28+Dv+%29_i%0A) I...
This code fails to run: ``` P = [ Pa ; Pb ; Pc ; Pd ] where Pa: ℝ^d Pb: ℝ^d Pc: ℝ^d Pd: ℝ^d ```
I can't declare types whose dimension is the result of some arithmetic expression: ``` x: ℝ^(dn + 3) d: ℤ n: ℤ ```
I tried to implement Equation 2 of "Decomposed Optimization Time Integrator for Large-Step Elastodynamics". I wanted the followed I❤️LA to work: ``` W(x) = sum_( e for e ∈ T...
I tried to implement Equation 1 of "Decomposed Optimization Time Integrator for Large-Step Elastodynamics". I wanted the followed I❤️LA to work: ``` `x^(t+1)` = argmin_( x ∈ ℝ^(dn) ) E(...
This repository installs fine on my mac via pip: pip3 install 'git+https://github.com/libigl/libigl-python-bindings/#egg=pyigl' Can you please add it to PyPI and also make binary wheels available? It took a long time...
Are there plans to update the version on conda-forge to include an Apple Silicon build?
`inline` does not optimize for speed: . > inline is more like static or extern than a directive telling the compiler to inline your functions. extern, static, inline are linkage...
### Contact Details _No response_ ### Abstract The first line of a conditional if statement must begin with `{`. Subsequent lines cannot. I think they should, as does [this HN...
Compiling the following code ``` min_( v ∈ ℝ² ) ∑_i v_i² ``` produces Python output that accesses `self.v` (which doesn't exist). It should instead access just `v`. [Try it](https://iheartla.github.io/iheartla/?code=min_%28+v+%E2%88%88+%E2%84%9D%C2%B2+%29+%E2%88%91_i+v_i%C2%B2%0A)...