Mystery Error; same code runs fine the 2nd time, but not the 1st!

조회 수: 9 (최근 30일)
Sree
Sree 2019년 6월 21일
댓글: Sree 2019년 6월 24일
The 1st run produces this error: "Unable to perform assignment because the left and right sides have a different number of elements." The same exact identical code, works fine the 2nd time around. What gives? Installation issues? Cache problems?
MATLAB Version: 9.6.0.1099231 (R2019a) Update 1
  댓글 수: 4
Sree
Sree 2019년 6월 21일
My codes are attached. If you save them all in a folder and run the main code, you'll see the problem. Thanks.
Jan
Jan 2019년 6월 24일
It would be useful, if you post the error message. I guess "the main code" is "Euler_Main_All.m".

댓글을 달려면 로그인하십시오.

채택된 답변

Jan
Jan 2019년 6월 21일
Without seeing the relevant part of the code, answering is based on guessing.
I guess, that your code is a script and not a function. Inside the script some variables are defined at the first run such that the second run can use them.
Neither "installation issues" nor "cache problems" are standing to reason. Most likely this is a simple programming error. You can use the debugger to test this. Another approach is to convert the script into a function, and check, if the problem occurs every time. Then you know that the data shared with previous runs is the source of the different behaviour.
  댓글 수: 4
Dennis
Dennis 2019년 6월 24일
You would win that bet!
But I learned something new today! Even with the nuke from orbit approach (clc, clear, close all) you do not get rid of global variables.
The error in the code is that lambda is used before it actually has a value (Euler_Main_All). However when the code is executed a second time the script can access the value of lambda from the first run (do not use global variables!).
Sree
Sree 2019년 6월 24일
Thanks. (Dennis nailed it.) The code works now, after removing global variables, and defining lambda properly. Inputs are still retained; quite useful when you are asking others to run your code (without their having to edit the code); their inputs will be logged in the diary file. (Had I sent you my diary file along with the codes, debugging would've been easier.) "Nuke" clear/clc/ close commands are kept as well for similar reasons. "Cargo cult programming?" Hmm! Thanks just the same.
P.S. That "global variable" habit is vestigial, from decades of Fortran coding. But I get it; don't use them in Matlab.

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Matrix Indexing에 대해 자세히 알아보기

제품

Community Treasure Hunt

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

Start Hunting!

Translated by