bug in the function

2 views (last 30 days)
yonatan friedman
yonatan friedman on 14 Jan 2021
Commented: Cris LaPierre on 15 Jan 2021
What do I need to write in f2 (u1, u2) so that I do not have the error :
Undefined function or variable 'ETA'.

Answers (1)

Cris LaPierre
Cris LaPierre on 14 Jan 2021
What is ETA?
You cannot use a variable you have not defined. Perhaps you think this variable is loaded by data.mat, but apparently not.
  7 Comments
Cris LaPierre
Cris LaPierre on 15 Jan 2021
The problem is when your for loop counter is 7, the value of d in f4 is a single number. However, in computing ETA, you use d(end-1). Since there is only a single value, end-1=0, which causes the error that you see.
Cris LaPierre
Cris LaPierre on 15 Jan 2021
These types of errors are difficult if not impossible to spot by just inspecting your code. The best way to track down the issue is to learn how to use the debugger.

Sign in to comment.

Products


Release

R2018b

Community Treasure Hunt

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

Start Hunting!