Matt Bauman

Results 149 comments of Matt Bauman

Not a problem. It's just something that I've been spending bits of spare time on as I get a chance. I did initially have the subsystem wrapped in a MatlabFile...

I'm still working on this as time permits. I've not had much time and the format ended up being way more convoluted than I initially thought. It's really wonky. I've...

As an aside, here's a fun Matlab WTF (in 2013b): ``` >> m = containers.Map('1',uint32([3707764736 1 1 1 1])) m = Map with properties: Count: 1 KeyType: char ValueType: any...

Crazily, they didn't fix it when they moved to version 7.3, either. The above code behaves identically across all save versions. I've not dug into the format for 7.3 yet,...

Yes — obviously there's not much we can do about the general case without a huge reworking. But inside the `@everywhere` macro there could definitely be special support for this......

I'm on board with a change. What about something like: ![68747470733a2f2f75706c6f61642e77696b696d656469612e6f72672f77696b6970656469612f636f6d6d6f6e732f632f63662f446973636f757273655f6c6f676f2e737667](https://user-images.githubusercontent.com/154641/188902230-6e853246-8c3b-409f-a1f2-358954c9c57d.png)

Fair enough — this is a matter of syntax preference and so is quite subjective.

It really only becomes more important for pedagogical reasons — I think it's helpful to have an opinionated standard style to promote readability and ease-of-use.

I was a little disappointed to still see that 7% difference there, but I was unable to reproduce it with my 6-core skylake laptop: ``` julia> @benchmark colnorms!($dest, $A) BenchmarkTools.Trial:...

Have you seen [`InterpIrregular`](https://github.com/timholy/Grid.jl/blob/2c7a96ce2563065748f2c5178cdb77e2182bf311/src/interp.jl#L313)? I haven't looked at your `interp1d`, but I think it should do exactly what you want. Create a grid like this: ``` julia x = cumsum(rand(100)/10)...