What does the error outpur argument not assigned during call mean?

2 visualizzazioni (ultimi 30 giorni)
Please see the above images. I created a simple function in which I calculated values of array members by using variables defined in the calling function. It worked. I applied the same logic here, but it shows this error.

Risposte (1)

Walter Roberson
Walter Roberson il 26 Ago 2013
Suppose you were to pass in 1 for m. Then because your second loop has an upper bound of m-1, that would be an upper bound of 1-1=0 and so would not execute at all, so you would not have assigned a value to "a". Likewise your third loop goes from 2:m so if m was 1, the loop would not be done at all, leaving another variable never assigned to.
  2 Commenti
Ashutosh
Ashutosh il 26 Ago 2013
Modificato: Ashutosh il 26 Ago 2013
I have a program wherein I have defined the arrays in same fashion(above image). It worked fine. The same program i am trying to break into small functions. Why the error now? What should I do to solve this error?
I tried this also. I kept only the d array in the matrix_vor file. I am now just finding d(i) values and printing them. but still i get the same error. http://imageshack.us/photo/my-images/51/dgls.jpg/
Walter Roberson
Walter Roberson il 26 Ago 2013
You have not shown us what value you are passing in for "n"
At the command line, give the command
dbstop if error
and then run your program. When it stops with the error, display the value of n that the routine has received.

Accedi per commentare.

Categorie

Scopri di più su Images in Help Center e File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by