Too many output arguments error
    5 Ansichten (letzte 30 Tage)
  
       Ältere Kommentare anzeigen
    
A = magic(5);
B = writematrix(A, 'M.xls');
command window: 
Error using writematrix
Too many output arguments.
Error in faf (line 2)
B = writematrix(A, 'M.xls');
Akzeptierte Antwort
  Voss
      
      
 am 2 Nov. 2023
        writematrix doesn't return any outputs.
Just say:
writematrix(A, 'M.xls')
What do you intend to be stored in B?
2 Kommentare
Weitere Antworten (0)
Siehe auch
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!

