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

1 次查看(过去 30 天)
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.

回答(1 个)

Walter Roberson
Walter Roberson 2013-8-26
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 个评论
Ashutosh
Ashutosh 2013-8-26
编辑:Ashutosh 2013-8-26
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 2013-8-26
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.

请先登录,再进行评论。

类别

Help CenterFile Exchange 中查找有关 Images 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by