复数计算器

仅仅用于软件推荐,不适合发求软件或软件使用问题方面的贴子
回复
头像
xusheng0711
帖子: 41
注册时间: 2007-12-09 14:36

复数计算器

#1

帖子 xusheng0711 » 2008-12-10 22:25

因为电路分析会用到很多复数运算,故想求个能计算复数的计算器
头像
anticlockwise
帖子: 2394
注册时间: 2007-03-01 20:46
来自: 湖南长沙

Re: 复数计算器

#2

帖子 anticlockwise » 2008-12-11 18:23

Octave, Maxima这些都是全面的计算工具,复数计算当然也是功能之一~~麻烦的在于要学他们的命令
beeven
帖子: 13
注册时间: 2008-10-05 18:44

Re: 复数计算器

#3

帖子 beeven » 2008-12-19 14:02

只是算复数是不是啊?什么工具也不需要,直接在Terminal输入Python...然后开始算...

import cmath
a=1+0j
b=0+2j
print a+b
wenhaosparty
帖子: 10
注册时间: 2007-09-02 1:30

Re: 复数计算器

#5

帖子 wenhaosparty » 2009-11-05 1:28

beeven 写了:只是算复数是不是啊?什么工具也不需要,直接在Terminal输入Python...然后开始算...

import cmath
a=1+0j
b=0+2j
print a+b
太棒了,都不知道还有cmath模块。
头像
lainme
论坛版主
帖子: 7805
注册时间: 2008-09-13 19:17
系统: Arch Linux (x86_64)
联系:

Re: 复数计算器

#6

帖子 lainme » 2009-11-06 9:49

立竿见影……
回复