max and min complex number
显示 更早的评论
i have set that contain complex number, then i get the greatest value using max function and get the smallest value using min function. For example the max value is -0.0115230+0.0474206i and the minimum value is 0.0026796 + 0.0006868i But if i give this command -0.0115230+0.0474206i > 0.0026796 + 0.0006868i it get the result ans=0. So, how did it happen ? should the result is ans=1 ?? please help. i am very confused
采纳的回答
更多回答(2 个)
Azzi Abdelmalek
2016-6-7
编辑:Azzi Abdelmalek
2016-6-7
If x1=1.1+2*i and x2=1+2.1*i What is the smallest number ? You can't compare two complex numbers, you can compare their modulus
abs(x1)>abs(x2)
I think max and min function, in your case, are finding the max and min of abs(your_array)
9 个评论
ElizabethR
2016-6-7
编辑:ElizabethR
2016-6-7
Azzi Abdelmalek
2016-6-7
Obviously, It's abs(x1)>abs(x2). Now it's up to you to tell us how you want to compare x1 and x2, by their modulus, or give us another criterion!
ElizabethR
2016-6-8
编辑:ElizabethR
2016-6-8
Azzi Abdelmalek
2016-6-8
编辑:Azzi Abdelmalek
2016-6-8
Ok, to get an answer, you need to clarify one thing:
If x1=1.1+2*i and x2=1+2.1*i What is the smallest value x1 or x2?
ElizabethR
2016-6-8
编辑:ElizabethR
2016-6-9
Stephen23
2016-6-8
@eliz: that is what everyone is telling you. If you wish to create an order then you can use the magnitude.
ElizabethR
2016-6-9
Guillaume
2016-6-9
"If you wish to create an order then you can use the magnitude."
You can, but that ordering is not compatible with addition and multiplication. So, with that ordering, if you have
z1 < z2
You cannot assume that
z1 + c < z2 + c %c a complex constant
z1 * c < z2 * c, with c > 0 a complex constant
ElizabethR
2016-6-14
Iain
2016-6-7
0 个投票
Max is calculating the absolute value, and then taking the maximum value, despite being negative.
Greater than is taking the value farthest from negative infinity.
7 个评论
ElizabethR
2016-6-8
Torsten
2016-6-8
Say you have
z1 = 7 + 3*I
z2 = 5 - 6*I
Which number is greater and which number is smaller ?
Best wishes
Torsten.
Guillaume
2016-6-8
"Max is calculating the absolute value, and then taking the maximum value, despite being negative.Greater than is taking the value farthest from negative infinity."
Neither is true for complex numbers according to the documentation.
ElizabethR
2016-6-8
编辑:ElizabethR
2016-6-8
ElizabethR
2016-6-8
ElizabethR
2016-6-14
编辑:ElizabethR
2016-6-14
类别
在 帮助中心 和 File Exchange 中查找有关 Creating and Concatenating Matrices 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!