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
* Update bounds for new versions
* added nix/stack config; now getting haskell build errors
* updated deps; building but untested
* incremental work; engOpen not working on Nix so far
* readme updates
* minor updates to running examples, still not working in NixOS
* minor refactoring for next engine tests
* fixing nix-shell script, adding a hello-world test program
* adding some more print statements to test
* mostly cleaning up documentation
* added convenience functions for adding paths to MATLAB, related tests, and other minor tweaks
* syntax simplification
* minor shell.nix tweaks
* refactoring shell.nix into shell and deps to make it easier to customize shell.nix
* possible minor fixes in nix expression
Co-authored-by: Ben Sherman <[email protected]>
Co-authored-by: Brandon Barker <[email protected]>
Copy file name to clipboardExpand all lines: Foreign/Matlab/Array.hsc
+6-6
Original file line number
Diff line number
Diff line change
@@ -31,7 +31,7 @@ module Foreign.Matlab.Array (
31
31
--| array list access
32
32
mxArrayGetList, mxArraySetList,
33
33
mxArrayGetAll, mxArraySetAll,
34
-
34
+
35
35
-- * Struct access
36
36
--|Structs in Matlab are always arrays, and so can be accessed using most array accessors.
37
37
--|However, the modification functions such as 'mxArraySet' are not implemented because they could disrupt field data in the entire struct array, and so some specialized functions are necessary.
@@ -66,7 +66,7 @@ anyMXArray a = unsafeCastMXArray a
66
66
typeMNullArray=MXArrayMNull
67
67
--|Safely cast a generic array to a NULL array, or return Nothing if the array is not NULL
--|Write array value with the specified name to the MAT-file, deleting any previously existing variable with that name in the MAT-file.
58
-
matSet::MATFile
58
+
matSet::MATFile
59
59
->Bool--^ Global. If true, the variable will be written such that when the MATLAB LOAD command loads the variable, it will automatically place it in the global workspace.
0 commit comments