kevingurney commented on code in PR #45973: URL: https://github.com/apache/arrow/pull/45973#discussion_r2029334974
########## matlab/doc/matlab_interface_for_apache_arrow_design.md: ########## @@ -109,19 +109,7 @@ ans = To serialize MATLAB data to a file on disk (e.g. Feather, Parquet), a MATLAB developer could start by constructing an `arrow.Table` using one of several different approaches. -They could individually compose the table from a set of `arrow.Array` objects (one for each table variable). - -###### Example Code: -``` matlab ->> Var1 = arrow.array(["foo"; "bar"; "baz"]); - ->> Var2 = arrow.array([today; today + 1; today + 2]); - ->> Var3 = arrow.array([10; 20; 30]); - ->> AT = arrow.Table(Var1, Var2, Var3); -``` -Alternatively, they could directly convert from an existing MATLAB `table` to an `arrow.Table` using a function like `arrow.matlab2arrow` to convert between an existing MATLAB `table` and an `arrow.Table`. +They could directly convert from an existing MATLAB `table` to an `arrow.Table` using a function like `arrow.table`. Review Comment: Marking this as resolved for now. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
