What is the best error metric for complex numbers in matlab?

12 ビュー (過去 30 日間)
Kalasagarreddi Kottakota
Kalasagarreddi Kottakota 2023 年 7 月 16 日
編集済み: John D'Errico 2023 年 7 月 16 日
I need to calculate the error percentage for complex numbers and I generally use:
All measured and actual are complex numbers.
Is there any other metric in matlab to calculate errors in complex domain?

回答 (2 件)

John D'Errico
John D'Errico 2023 年 7 月 16 日
編集済み: John D'Errico 2023 年 7 月 16 日
First, why do you think this is inadequate? What don't you like about it?
Does it satisfy some basic requirements of a simple norm, in the sense that it is zero when the two are the same, and greater than zero when they are not? (Yes.)
Is it non-dimensional? That is, in the sense that if you scale all everything by any constant, will it yield the same value? This means if you change measurement units from meters to nanometers, the result will be no different. (Yes.)
Is it simple and terribly efficient to compute? (Yes.)
Is there something better than what has been used for longer than I have been alive? Not that I know of. Complex numbers work just like real numbers in this sense, as long as you use abs there.
Ok, how about this? Don't multiply by 100. That saves a CPU cycle by avoiding the multiply. And all you need to do is recognize that the multiply by 100 was always irrelevant, as long as you change your perception of what a small number is in context.
Seriously, there is no better secret formula that the rest of us know, but we never tell anyone who does not know the secret handshake. Or, maybe I just never learned the handshake. ;-)

Torsten
Torsten 2023 年 7 月 16 日
移動済み: Torsten 2023 年 7 月 16 日
You can use the same expression also for complex numbers.
Measured = 1+1i;
Actual = 1.1+1.1*1i;
error = abs((Measured-Actual)/Actual)*100
error = 9.0909

カテゴリ

Help Center および File Exchange2-D and 3-D Plots についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by