简体   繁体   中英

Formatting of Complex Numbers in Google Sheets

How can complex numbers be formatted in Google sheets? If for instance I have the following complex number in a cell, with both real and imaginary part too long for my needs,

=COMPLEX(1.23456789, 0.987654321)

which would be displayed as

1.23456789+0.987654321i

where is the format accessible so that it is displayed as in the following?

1.23+0.99i

this maybe:

=COMPLEX(ROUND(1.23456789,2), ROUND(0.987654321,2))

在此处输入图像描述

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM