Convert to CSV (2D only)
Future<void> toCSV(String path) async { if (ndim != 2) { throw ArgumentError('CSV export requires 2D array'); } await exportTo(path, DataFormat.csv); }