William Grimes
William Grimes

Reputation: 697

Matlab Terminal Output

There is rather a perplexing and yet would seem simple problem I have with a matlab script I have written. Whenever I run the script on each iteration of the loop I get an output exactly like this:

hoi
hoi

filenameShort = 

    '001001000_Field_1.tif'

Elapsed time is 9.304627 seconds.

The filenameShort is a variable that I print on each iteration of a for loop to keep track of the progress of the code, and I use the tic toc function to show the elapsed time. However what I cannot understand is why the terminal prints 'hoi hoi', I have searched my code for hoi but it does not exist. I have also researched online, and I am very confused about this.

Thanks

Upvotes: 0

Views: 176

Answers (1)

William Grimes
William Grimes

Reputation: 697

Okay I found the answer in a file called, vanherk.m in the Bernsen function a fairly innocuous looking disp('hoi') line. Thanks –

Upvotes: 1

Related Questions