You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Now that I've implemented serde 1.0 in ndarray, we can serialise data. For the moment we have the ability to write csv, message pack, yaml and json. Config input is yaml, observables are json and potentials/wavefuntions are a 'choice' of 'binary or not', meaning messagepack/csv.
- Build an enum of these so people can chose their format
- matlab readers
- csv
- messagepack
- json
- yaml
- python readers
- csv
- messagepack
- json
- yaml
The text was updated successfully, but these errors were encountered:
Hello,
I would like to tackle the MATLAB part of it if you are willing to mentor (answer basic questions, review my code). I might not be fast but I will notify you from any improvements.
Is it OK to you @Libbum ?
Where would you want me to put the files for the code? What name? Do you have some styling conventions? Could you write some tests you want the code I produce to pass? Some requirements maybe?
I'm on the road this weekend so don't have too much time until Monday, but you can put any changes in analysis/matlab. I have a load_plain.m file there already that you can compare against. No specific conventions you'll need to follow, but these files would be for end users who want to plot data easily. So things need to be mostly self explanatory and we'll commented. That's the aim at least, but just getting things working is fine to start.
One blocking issue with this is that native loading of binary message pack data, yaml content etc. doesn't exist in Matlab. There are tools out there that we can use to pull this data in, finding the right ones with easy set-up and install has proven to be a bit of an issue so far...
Requirements here are a few proof of concept graphs to be able to display the resulting wavefunctions that Wafer is building. Since the data is 3D I personally like 2D slices and 3D ISO surfaces (the file I've written already has these), but if you can think of better ways of displaying the data then that would be a welcomed addition.
I'll elaborate a bit more on Monday. Thanks for your interest!
Now that I've implemented serde 1.0 in ndarray, we can serialise data. For the moment we have the ability to write csv, message pack, yaml and json. Config input is yaml, observables are json and potentials/wavefuntions are a 'choice' of 'binary or not', meaning messagepack/csv.
The text was updated successfully, but these errors were encountered: