Click here to Skip to main content
15,884,388 members
Articles / Desktop Programming / Windows Forms
Article

Complex Calculator

Rate me:
Please Sign up or sign in to vote.
2.74/5 (25 votes)
26 Jun 20071 min read 78.2K   4.7K   35   7
This calculator is written as a demo application for the SCI library

Screenshot - A_Complex_Calculator.png

Introduction

This calculator is written as a demo application for the SCI library. It has a similar interface to the Windows built-in calculator (Standard View) and it can handle complex numbers as operands. Complex Calculator is a more general-purpose and usable calculator.

The interface of Complex Calculator

  • Display: Outputs the results of calculations and current number inputs.
  • Input: Buttons for inputting digits and calculation operations.

Use of Sci.Math.ComplexNumber

The manipulation of complex numbers is powered by Sci.Math.ComplexNumber. Sci.Math.ComplexNumber is implemented using the following structure:

C#
Sci.Math.ComplexNumber z = new Sci.Math.ComplexNumber(); 

Then z represents 0+i0. We can change the Real part or the Imaginary part of z using:

C#
z.Re = 3;
z.Im = 4;

ComplexNumber supports Addition, Subtraction, Multiplication and Division. For instance:

C#
Sci.Math.ComplexNumber w = new Sci.Math.ComplexNumber(1, 2);
w = w + z;

Then w represents 4+i6. Calculations of the modulus and argument of z can be retrieved from the properties Modulus and Argument:

C#
double m = z.Modulus;
double a = z.Argument; 

Conclusion

Although this "Complex" Calculator is not truly complex, its intent is to enable users who use complex numbers to quickly get answers from basic operations for complex numbers. Many scientific software developers also know of the SCI library.

Links

History

  • 4 April, 2007 -- Version 1.0.0.0
  • 26 June, 2007 -- Article edited and moved to the main CodeProject.com article base

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here


Written By
Taiwan Taiwan
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions

 
GeneralNice Calc, some suggestions. Pin
WMBWMB17-Aug-07 3:30
WMBWMB17-Aug-07 3:30 
QuestionCan not Extract from ZIP Pin
WMBWMB14-Aug-07 7:39
WMBWMB14-Aug-07 7:39 
AnswerRe: Can not Extract from ZIP Pin
livibetter14-Aug-07 18:37
livibetter14-Aug-07 18:37 
GeneralCannot extract the files Pin
vkuttyp26-Jun-07 6:28
professionalvkuttyp26-Jun-07 6:28 
GeneralRe: Cannot extract the files Pin
livibetter26-Jun-07 7:03
livibetter26-Jun-07 7:03 
GeneralCool Pin
merlin98126-Jun-07 3:31
professionalmerlin98126-Jun-07 3:31 
GeneralScientific Calculator Pin
Coskun Oba9-Apr-07 4:48
Coskun Oba9-Apr-07 4:48 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.