-
Notifications
You must be signed in to change notification settings - Fork 86
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Matrices #156
Comments
See: #212. Added a |
A corresponding |
Just checking to see if this was a dead feature request or not. The "fooList":
[
[
[ 0.2,0.01,0.02,0.04],
[ 50.1,30.2,0.01,0.02,0.04],
[ 50.1,30.2,0.01,0.02,0.04],
[ 0.2,0.01,0.02,0.04]
],
[
[ 0.2,0.01,0.02,0.04],
[ 50.1,30.2,0.01,0.02,0.04],
[ 50.1,30.2,0.01,0.02,0.04],
[ 0.2,0.01,0.02,0.04]
],
], |
It's not dead... I'm just not looking forward to having to add all the wrapper for all the different variable types. :) I'll try to get to it when I can. |
See: #426 |
Add
get
routines for getting matrices (integer, real, etc.) from json files and objects. This could be used, for example, to easily get a variable like:Could also have optional inputs to indicate if the matrix is stored in column-major (Fortran-style) or row-major (C-style) order.
Would also have to check to make sure each row has the same number of columns and are all the same variable type.
Also add the corresponding
set
routines.The text was updated successfully, but these errors were encountered: