MATLAB: Too many output arguments

2 vues (au cours des 30 derniers jours)
Leonard
Leonard le 3 Oct 2014
Commenté : Leonard le 3 Oct 2014
I'm fairly new to MATLAB but it seems to me that the following line should be correct:
[x,y,z] = [1,2,3]
Why am I getting a "Too many output arguments." error?
x,y,z are unused variables and I've even declared them each as zeros(1).
Thanks!

Réponse acceptée

Image Analyst
Image Analyst le 3 Oct 2014
[1,2,3] is an expression that produces a single thing : an array. You are trying to assign the single thing to 3 separate things . That's the explanation. If you want fix, use deal or assign the 3 variables separately in 3 separate lines.
  1 commentaire
Leonard
Leonard le 3 Oct 2014
Thanks!

Connectez-vous pour commenter.

Plus de réponses (1)

Azzi Abdelmalek
Azzi Abdelmalek le 3 Oct 2014
x=1
y=2
z=3

Catégories

En savoir plus sur Logical dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by