-
Notifications
You must be signed in to change notification settings - Fork 39
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Dan Smith
authored and
Dan Smith
committed
Jan 10, 2023
1 parent
8423b28
commit c68727a
Showing
18 changed files
with
627 additions
and
25 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file added
BIN
+30.5 KB
externals/coda-oss/modules/c++/hdf5.lite/unittests/123_barfoo_catdog_cx.h5
Binary file not shown.
55 changes: 55 additions & 0 deletions
55
externals/coda-oss/modules/c++/hdf5.lite/unittests/create_123_barfoo_catdog_cx.m
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,55 @@ | ||
% https://www.mathworks.com/help/matlab/ref/h5write.html | ||
mydata = rand(10, 1); | ||
|
||
h5create('123_barfoo_catdog_cx.h5', '/1/bar/cat/i', [10, 1]) | ||
h5write('123_barfoo_catdog_cx.h5', '/1/bar/cat/i', mydata) | ||
h5create('123_barfoo_catdog_cx.h5', '/1/bar/cat/r', [10, 1]) | ||
h5write('123_barfoo_catdog_cx.h5', '/1/bar/cat/r', mydata) | ||
h5create('123_barfoo_catdog_cx.h5', '/1/bar/dog/i', [10, 1]) | ||
h5write('123_barfoo_catdog_cx.h5', '/1/bar/dog/i', mydata) | ||
h5create('123_barfoo_catdog_cx.h5', '/1/bar/dog/r', [10, 1]) | ||
h5write('123_barfoo_catdog_cx.h5', '/1/bar/dog/r', mydata) | ||
h5create('123_barfoo_catdog_cx.h5', '/1/foo/cat/i', [10, 1]) | ||
h5write('123_barfoo_catdog_cx.h5', '/1/foo/cat/i', mydata) | ||
h5create('123_barfoo_catdog_cx.h5', '/1/foo/cat/r', [10, 1]) | ||
h5write('123_barfoo_catdog_cx.h5', '/1/foo/cat/r', mydata) | ||
h5create('123_barfoo_catdog_cx.h5', '/1/foo/dog/i', [10, 1]) | ||
h5write('123_barfoo_catdog_cx.h5', '/1/foo/dog/i', mydata) | ||
h5create('123_barfoo_catdog_cx.h5', '/1/foo/dog/r', [10, 1]) | ||
h5write('123_barfoo_catdog_cx.h5', '/1/foo/dog/r', mydata) | ||
|
||
h5create('123_barfoo_catdog_cx.h5', '/2/bar/cat/i', [10, 1]) | ||
h5write('123_barfoo_catdog_cx.h5', '/2/bar/cat/i', mydata) | ||
h5create('123_barfoo_catdog_cx.h5', '/2/bar/cat/r', [10, 1]) | ||
h5write('123_barfoo_catdog_cx.h5', '/2/bar/cat/r', mydata) | ||
h5create('123_barfoo_catdog_cx.h5', '/2/bar/dog/i', [10, 1]) | ||
h5write('123_barfoo_catdog_cx.h5', '/2/bar/dog/i', mydata) | ||
h5create('123_barfoo_catdog_cx.h5', '/2/bar/dog/r', [10, 1]) | ||
h5write('123_barfoo_catdog_cx.h5', '/2/bar/dog/r', mydata) | ||
h5create('123_barfoo_catdog_cx.h5', '/2/foo/cat/i', [10, 1]) | ||
h5write('123_barfoo_catdog_cx.h5', '/2/foo/cat/i', mydata) | ||
h5create('123_barfoo_catdog_cx.h5', '/2/foo/cat/r', [10, 1]) | ||
h5write('123_barfoo_catdog_cx.h5', '/2/foo/cat/r', mydata) | ||
h5create('123_barfoo_catdog_cx.h5', '/2/foo/dog/i', [10, 1]) | ||
h5write('123_barfoo_catdog_cx.h5', '/2/foo/dog/i', mydata) | ||
h5create('123_barfoo_catdog_cx.h5', '/2/foo/dog/r', [10, 1]) | ||
h5write('123_barfoo_catdog_cx.h5', '/2/foo/dog/r', mydata) | ||
|
||
h5create('123_barfoo_catdog_cx.h5', '/3/bar/cat/i', [10, 1]) | ||
h5write('123_barfoo_catdog_cx.h5', '/3/bar/cat/i', mydata) | ||
h5create('123_barfoo_catdog_cx.h5', '/3/bar/cat/r', [10, 1]) | ||
h5write('123_barfoo_catdog_cx.h5', '/3/bar/cat/r', mydata) | ||
h5create('123_barfoo_catdog_cx.h5', '/3/bar/dog/i', [10, 1]) | ||
h5write('123_barfoo_catdog_cx.h5', '/3/bar/dog/i', mydata) | ||
h5create('123_barfoo_catdog_cx.h5', '/3/bar/dog/r', [10, 1]) | ||
h5write('123_barfoo_catdog_cx.h5', '/3/bar/dog/r', mydata) | ||
h5create('123_barfoo_catdog_cx.h5', '/3/foo/cat/i', [10, 1]) | ||
h5write('123_barfoo_catdog_cx.h5', '/3/foo/cat/i', mydata) | ||
h5create('123_barfoo_catdog_cx.h5', '/3/foo/cat/r', [10, 1]) | ||
h5write('123_barfoo_catdog_cx.h5', '/3/foo/cat/r', mydata) | ||
h5create('123_barfoo_catdog_cx.h5', '/3/foo/dog/i', [10, 1]) | ||
h5write('123_barfoo_catdog_cx.h5', '/3/foo/dog/i', mydata) | ||
h5create('123_barfoo_catdog_cx.h5', '/3/foo/dog/r', [10, 1]) | ||
h5write('123_barfoo_catdog_cx.h5', '/3/foo/dog/r', mydata) | ||
|
||
h5disp('123_barfoo_catdog_cx.h5') |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.