kou commented on code in PR #37215:
URL: https://github.com/apache/arrow/pull/37215#discussion_r1296559210


##########
matlab/README.md:
##########
@@ -205,20 +209,417 @@ arrowArray =
 ]
 ```
 
+### Arrow `RecordBatch` class
+
+#### Create an Arrow `RecordBatch` from a MATLAB `table`
+
+```matlab
+>> matlabTable = table(["A"; "B"; "C"], [1; 2; 3], [true; false; true])
+
+matlabTable =
+
+  3x3 table
+
+    Var1    Var2    Var3
+    ____    ____    _____
+
+    "A"      1      true
+    "B"      2      false
+    "C"      3      true
+
+>> arrowRecordBatch = arrow.recordbatch(matlabTable)

Review Comment:
   It's out-of-scope of this but we may want to rename this to `recordBatch()` 
because other most API use camelCase.
   
   ```suggestion
   >> arrowRecordBatch = arrow.recordBatch(matlabTable)
   ```



##########
matlab/README.md:
##########
@@ -205,20 +209,417 @@ arrowArray =
 ]
 ```
 
+### Arrow `RecordBatch` class
+
+#### Create an Arrow `RecordBatch` from a MATLAB `table`
+
+```matlab
+>> matlabTable = table(["A"; "B"; "C"], [1; 2; 3], [true; false; true])
+
+matlabTable =
+
+  3x3 table
+
+    Var1    Var2    Var3
+    ____    ____    _____
+
+    "A"      1      true
+    "B"      2      false
+    "C"      3      true
+
+>> arrowRecordBatch = arrow.recordbatch(matlabTable)
+
+arrowRecordBatch =
+
+Var1:   [
+    "A",
+    "B",
+    "C"
+  ]
+Var2:   [
+    1,
+    2,
+    3
+  ]
+Var3:   [
+    true,
+    false,
+    true
+  ]
+```
+
+#### Create a MATLAB `table` from an Arrow `RecordBatch`
+
+```matlab
+>> arrowRecordBatch
+
+arrowRecordBatch =
+
+Var1:   [
+    "A",
+    "B",
+    "C"
+  ]
+Var2:   [
+    1,
+    2,
+    3
+  ]
+Var3:   [
+    true,
+    false,
+    true
+  ]
+
+>> matlabTable = table(arrowRecordBatch)
+
+matlabTable =
+
+  3x3 table
+
+    Var1    Var2    Var3
+    ____    ____    _____
+
+    "A"      1      true
+    "B"      2      false
+    "C"      3      true
+```
+
+#### Create an Arrow `RecordBatch` from multiple Arrow `Array`s
+
+
+```matlab
+>> stringArray = arrow.array(["A", "B", "C"])
+
+stringArray =
+
+[
+  "A",
+  "B",
+  "C"
+]
+
+>> timestampArray = arrow.array([datetime(1997, 01, 01), datetime(1998, 01, 
01), datetime(1999, 01, 01)])
+
+timestampArray =
+
+[
+  1997-01-01 00:00:00.000000,
+  1998-01-01 00:00:00.000000,
+  1999-01-01 00:00:00.000000
+]
+
+>> booleanArray = arrow.array([true, false, true])
+
+booleanArray =
+
+[
+  true,
+  false,
+  true
+]
+
+>> arrowRecordBatch = arrow.tabular.RecordBatch.fromArrays(stringArray, 
timestampArray, booleanArray)
+
+arrowRecordBatch =
+
+Column1:   [
+    "A",
+    "B",
+    "C"
+  ]
+Column2:   [
+    1997-01-01 00:00:00.000000,
+    1998-01-01 00:00:00.000000,
+    1999-01-01 00:00:00.000000
+  ]
+Column3:   [
+    true,
+    false,
+    true
+  ]
+```
+
+#### Extract a column from a `RecordBatch` by index
+
+```matlab
+>> arrowRecordBatch = arrow.tabular.RecordBatch.fromArrays(stringArray, 
timestampArray, booleanArray)
+
+arrowRecordBatch =
+
+Column1:   [
+    "A",
+    "B",
+    "C"
+  ]
+Column2:   [
+    1997-01-01 00:00:00.000000,
+    1998-01-01 00:00:00.000000,
+    1999-01-01 00:00:00.000000
+  ]
+Column3:   [
+    true,
+    false,
+    true
+  ]
+
+>> timestampArray = arrowRecordBatch.column(2)
+
+timestampArray =
+
+[
+  1997-01-01 00:00:00.000000,
+  1998-01-01 00:00:00.000000,
+  1999-01-01 00:00:00.000000
+]
+```
+
+### Arrow `Type` classes (i.e. `arrow.type.<Type>`)
+
+#### Create an Arrow `Int8Type` object
+
+```matlab
+>> type = arrow.int8()
+
+type =
+
+  Int8Type with properties:
+
+    ID: Int8
+```
+
+#### Create an Arrow `TimestampType` object with a specific `TimeUnit` and 
`TimeZone`
+
+```matlab
+>> type = arrow.timestamp(TimeUnit="Second", TimeZone="Asia/Kolkata")
+
+type =
+
+  TimestampType with properties:
+
+          ID: Timestamp
+    TimeUnit: Second
+    TimeZone: "Asia/Kolkata"
+```
+
+
+#### Get the type enumeration `ID` for an Arrow `Type` object
+```matlab

Review Comment:
   ```suggestion
   
   ```matlab
   ```



-- 
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]

Reply via email to