필터 지우기
필터 지우기

How can I define split-complex number?

조회 수: 6 (최근 30일)
oren fivel
oren fivel 2020년 5월 6일
댓글: John D'Errico 2020년 5월 7일
How can I define split-complex number a+j*b such that a and b are real and j is a new type an imaginary unit such that j^2=+1?

채택된 답변

John D'Errico
John D'Errico 2020년 5월 6일
편집: John D'Errico 2020년 5월 6일
You would need to create a custom class for the object, where you will then define how arithmetic is to be performed. That is, you must overload the addition, subtraction, multiplication, etc., operators, as approriate and as necessary. That object would contain two fields, thus a and b. You would probably overload the disp/display functions too, since you will need to display this object.
  댓글 수: 2
oren fivel
oren fivel 2020년 5월 6일
Thanks.
Is it possible somehow to gain access to the the definition of j and change the syntax such that if (for example) I type in the command line (j^2), the display in the comand window will be 1?
John D'Errico
John D'Errico 2020년 5월 7일
Sorry, but not possible. Well, not easily possible. Anything is possible. However, this would require you to create a new class of numbers (again) because i and j are built into MATLAB. You want that to be true, since this is what makes MATLAB highly efficient on computations with double precision arrays. It all gets fed into the BLAS, which in turn makes things like matrix multiplies and lots of operations blazingly fast. But that happens because complex numbers are embedded deeply into the guts of MATLAB's single and double numeric classes.
What you need to do is as I said in my answer - create a completely new class that can intercept operations on numbers. You need to refine arithmetic for complex numbers in a completely different way. Well, sufficiently different that what is done will not work any more.
It is doable. It should not be that inefficient. I've written far more complex tools, where all arithmetic computations are fully overloaded (if my memory serves) on six separate occasions. So I do know it is doable. But you cannot do this by simply setting a flag somewhere in a preference, or by anything that easy. Sorry.

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Logical에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by