Does 'i' after value stand for 'index', and if so why does it appear as part of the answer?

1 view (last 30 days)
I am trying to calculate the Euclidean distance between two images vectors of 4096 values that are contained in a file called allData (see pic) with the command:
Dist = sqrt(sum((allData(1) - allData(3) .^ 2)))
the answer that was returned was
0.0000 +19.1794i
does this answer seem correct or is the 'i' returned because im indexing into a matrix and im just getting returned one of the values from that image vector or am i being returned the distance between the two rows?

Accepted Answer

Roger Stafford
Roger Stafford on 24 Mar 2018
Edited: Roger Stafford on 24 Mar 2018
The 'i' in your result indicates a complex answer. I assume you are familiar with complex numbers. The 'i' represents the square root of minus one. This is caused by your attempt to take the square root of a negative number. Apparently allData(1) is less than the square of allData(3).
  5 Comments

Sign in to comment.

More Answers (0)

Categories

Find more on Mathematics in Help Center and File Exchange

Community Treasure Hunt

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

Start Hunting!