Borrar filtros
Borrar filtros

Too many output arguments error

7 visualizaciones (últimos 30 días)
Samuel Vadovic
Samuel Vadovic el 2 de Nov. de 2023
Comentada: Voss el 2 de Nov. de 2023
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');
  1 comentario
Samuel Vadovic
Samuel Vadovic el 2 de Nov. de 2023
I really dont get why this started to happen suddenly...

Iniciar sesión para comentar.

Respuesta aceptada

Voss
Voss el 2 de Nov. de 2023
writematrix doesn't return any outputs.
Just say:
writematrix(A, 'M.xls')
What do you intend to be stored in B?
  2 comentarios
Samuel Vadovic
Samuel Vadovic el 2 de Nov. de 2023
thanks, that solved it
Voss
Voss el 2 de Nov. de 2023
You're welcome!

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

Más información sobre Characters and Strings en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by