Arno Gourdol

Results 335 comments of Arno Gourdol

Thanks for the suggestion! I'm not sure that I understand it completely, though. What do you expect to happen when the type checking is disabled? Nothing? Perhaps you could give...

Oh... I see. Actually, that's a bug. The type signature of the `Multiply` function is `(number, ...number) -> number`, but it's also `threadable`, which means it does perform automatic broadcast...

There's not a lot of details in the report, but I think this may be a MathLive issue, perhaps?

Yes, I'm aware of the behavior of Desmos in that regard, and I don't quite understand the appeal. Seems to me that it makes navigating to denominator more difficult. That...

Yes, this should work. Try ```js import { convertLatexToAsciiMath } from "mathlive"; ``` instead.

Issue #1735 has been resolved. When in a node.js environment, using `import "mathlive"` should automatically import the correct SSR variant. I don't know why it doesn't work in your case...

I believe this is now fixed.

log of arbitrary base should already be handled through canonicalization. Do those represent cases that don’t work even though they should or is it just a placeholder list of possible...

This is not currently supported, but would make a great addition.

To clarify: ```js ce.parse('(-1)^{1/3}').evaluate().print(); // -> -1 ``` but ```js ce.parse('(-1)^{1/3}').N().print(); // NaN ```