MATLAB - File I/O
You have a text file
records.txt with mixed data: a name (string), age (integer), and height (float) on each line, separated by commas, like:
John,25,5.9 Anna,30,5.5 Mike,22,6.1Which MATLAB approach correctly reads this file into a table with proper data types?
