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
Please add support for 64-bit integers and other extended numeric (xnumeric) data types to the binary write procedures, cbinwrite and fbindirwrite. Currently:
ncl 33> print (typeof (x_int64))
(0) int64
ncl 34> print (typeof (x_uint64))
(0) uint64
ncl 35> cbinwrite ("test.int64", x_int64)
fatal:Argument type mismatch on argument (1) of (cbinwrite) can not coerce
fatal:["Execute.c":8635]:Execute: Error occurred at or near line 35
ncl 36> cbinwrite ("test.uint64", x_uint64)
fatal:Argument type mismatch on argument (1) of (cbinwrite) can not coerce
fatal:["Execute.c":8635]:Execute: Error occurred at or near line 36
The text was updated successfully, but these errors were encountered:
Please add support for 64-bit integers and other extended numeric (xnumeric) data types to the binary write procedures, cbinwrite and fbindirwrite. Currently:
The text was updated successfully, but these errors were encountered: