MATLAB: How to find the max value of rows in a table

maxmaximumtable

I currently have a table (4 columns, 46 rows). I would like to find the max value of each row. For example, if one rows values are [1 0 1 2], I woud like the code to identify 2 as the max value. I need to do this for 46 rows.

Best Answer

MAX_rows = max(TabLe{:, :}, [], 2)