发布网友 发布时间:2022-04-22 06:56
共3个回答
热心网友 时间:2022-04-19 04:54
1、ceil函数:朝正无穷大方向取整
2、用法说明:w=ceil(z)函数将输入z中的元素取整,值w为不小于本身的最小整数。
对于复数B,分别对实部和虚部取整。
3、例:
>> x = [2-4i 7-9i 23+12i 98-2000i]
x =
1.0e+03 *
0.0020 - 0.0040i 0.0070 - 0.0090i 0.0230 + 0.0120i 0.0980 - 2.0000i
>> w = ceil(x)
w =
1.0e+03 *
0.0020 - 0.0040i 0.0070 - 0.0090i 0.0230 + 0.0120i 0.0980 - 2.0000i
扩展资料
Y = ceil(t) rounds each element of the ration array t to the nearest number of seconds greater than or equal to that element.
Y = ceil(t,unit) rounds each element of t to the nearest number of the specified unit of time greater than or equal to that element.
X = [-1.9 -0.2 3.4; 5.6 7 2.4+3.6i];
Y = ceil(X)
Y =
-1.0000 + 0.0000i 0.0000 + 0.0000i 4.0000 + 0.0000i
6.0000 + 0.0000i 7.0000 + 0.0000i 3.0000 + 4.0000i
热心网友 时间:2022-04-19 06:12
ceil 是向离它最近的大整数圆整
热心网友 时间:2022-04-19 07:47
你会c程序解这道题吗,会了你就明白了