Read dimensions of 2D array in CSV file
function readArraySize2D extends Modelica.Icons.Function; input String fileName "File name"; input String delimiter = "," "Column delimiter character"; input String quotation = "\"" "Quotation character"; input Integer nHeaderLines = 0 "Number of header lines to ignore"; input Boolean verboseRead = true "= true, if info message that file is loading is to be printed"; output Integer m "Number of rows in array"; output Integer n "Number of columns in array"; end readArraySize2D;