@univerjs/sheets-formula 0.2.8 → 0.2.10
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/cjs/index.js +4 -4
- package/lib/es/index.js +908 -451
- package/lib/locale/en-US.json +595 -351
- package/lib/locale/ru-RU.json +595 -351
- package/lib/locale/vi-VN.json +666 -322
- package/lib/locale/zh-CN.json +604 -360
- package/lib/locale/zh-TW.json +603 -359
- package/lib/types/controllers/formula-editor-show.controller.d.ts +7 -3
- package/lib/types/controllers/prompt.controller.d.ts +6 -1
- package/lib/types/locale/en-US.d.ts +464 -220
- package/lib/types/locale/function-list/compatibility/en-US.d.ts +6 -2
- package/lib/types/locale/function-list/compatibility/ja-JP.d.ts +6 -2
- package/lib/types/locale/function-list/compatibility/vi-VN.d.ts +6 -2
- package/lib/types/locale/function-list/compatibility/zh-CN.d.ts +6 -2
- package/lib/types/locale/function-list/compatibility/zh-TW.d.ts +6 -2
- package/lib/types/locale/function-list/engineering/en-US.d.ts +32 -112
- package/lib/types/locale/function-list/engineering/ja-JP.d.ts +32 -112
- package/lib/types/locale/function-list/engineering/vi-VN.d.ts +32 -112
- package/lib/types/locale/function-list/engineering/zh-CN.d.ts +32 -112
- package/lib/types/locale/function-list/engineering/zh-TW.d.ts +32 -112
- package/lib/types/locale/function-list/financial/en-US.d.ts +364 -52
- package/lib/types/locale/function-list/financial/ja-JP.d.ts +364 -52
- package/lib/types/locale/function-list/financial/vi-VN.d.ts +412 -46
- package/lib/types/locale/function-list/financial/zh-CN.d.ts +364 -52
- package/lib/types/locale/function-list/financial/zh-TW.d.ts +364 -52
- package/lib/types/locale/function-list/statistical/en-US.d.ts +12 -4
- package/lib/types/locale/function-list/statistical/ja-JP.d.ts +12 -4
- package/lib/types/locale/function-list/statistical/vi-VN.d.ts +44 -0
- package/lib/types/locale/function-list/statistical/zh-CN.d.ts +12 -4
- package/lib/types/locale/function-list/statistical/zh-TW.d.ts +12 -4
- package/lib/types/locale/ru-RU.d.ts +464 -220
- package/lib/types/locale/vi-VN.d.ts +494 -160
- package/lib/types/locale/zh-CN.d.ts +464 -220
- package/lib/types/locale/zh-TW.d.ts +464 -220
- package/lib/types/services/render-services/ref-selections.render-service.d.ts +8 -3
- package/lib/umd/index.js +4 -4
- package/package.json +24 -24
package/lib/locale/zh-CN.json
CHANGED
|
@@ -532,13 +532,29 @@
|
|
|
532
532
|
}
|
|
533
533
|
],
|
|
534
534
|
"functionParameter": {
|
|
535
|
-
"
|
|
536
|
-
"name": "
|
|
537
|
-
"detail": "
|
|
535
|
+
"settlement": {
|
|
536
|
+
"name": "结算日",
|
|
537
|
+
"detail": "有价证券的结算日。"
|
|
538
538
|
},
|
|
539
|
-
"
|
|
540
|
-
"name": "
|
|
541
|
-
"detail": "
|
|
539
|
+
"maturity": {
|
|
540
|
+
"name": "到期日",
|
|
541
|
+
"detail": "有价证券的到期日。"
|
|
542
|
+
},
|
|
543
|
+
"coupon": {
|
|
544
|
+
"name": "年息票利率",
|
|
545
|
+
"detail": "有价证券的年息票利率。"
|
|
546
|
+
},
|
|
547
|
+
"yld": {
|
|
548
|
+
"name": "年收益率",
|
|
549
|
+
"detail": "有价证券的年收益率。"
|
|
550
|
+
},
|
|
551
|
+
"frequency": {
|
|
552
|
+
"name": "频次",
|
|
553
|
+
"detail": "年付息次数。"
|
|
554
|
+
},
|
|
555
|
+
"basis": {
|
|
556
|
+
"name": "基准",
|
|
557
|
+
"detail": "要使用的日计数基准类型。"
|
|
542
558
|
}
|
|
543
559
|
}
|
|
544
560
|
},
|
|
@@ -692,13 +708,13 @@
|
|
|
692
708
|
}
|
|
693
709
|
],
|
|
694
710
|
"functionParameter": {
|
|
695
|
-
"
|
|
696
|
-
"name": "
|
|
697
|
-
"detail": "
|
|
711
|
+
"values": {
|
|
712
|
+
"name": "现金流",
|
|
713
|
+
"detail": "数组或单元格的引用,这些单元格包含用来计算内部收益率的数字。\n1.Values 必须包含至少一个正值和一个负值,以计算返回的内部收益率。\n2.IRR 使用值的顺序来说明现金流的顺序。 一定要按您需要的顺序输入支出值和收益值。\n3.如果数组或引用包含文本、逻辑值或空白单元格,这些数值将被忽略。"
|
|
698
714
|
},
|
|
699
|
-
"
|
|
700
|
-
"name": "
|
|
701
|
-
"detail": "
|
|
715
|
+
"guess": {
|
|
716
|
+
"name": "估计值",
|
|
717
|
+
"detail": "对函数 IRR 计算结果的估计值。"
|
|
702
718
|
}
|
|
703
719
|
}
|
|
704
720
|
},
|
|
@@ -740,13 +756,29 @@
|
|
|
740
756
|
}
|
|
741
757
|
],
|
|
742
758
|
"functionParameter": {
|
|
743
|
-
"
|
|
744
|
-
"name": "
|
|
745
|
-
"detail": "
|
|
759
|
+
"settlement": {
|
|
760
|
+
"name": "结算日",
|
|
761
|
+
"detail": "有价证券的结算日。"
|
|
746
762
|
},
|
|
747
|
-
"
|
|
748
|
-
"name": "
|
|
749
|
-
"detail": "
|
|
763
|
+
"maturity": {
|
|
764
|
+
"name": "到期日",
|
|
765
|
+
"detail": "有价证券的到期日。"
|
|
766
|
+
},
|
|
767
|
+
"coupon": {
|
|
768
|
+
"name": "年息票利率",
|
|
769
|
+
"detail": "有价证券的年息票利率。"
|
|
770
|
+
},
|
|
771
|
+
"yld": {
|
|
772
|
+
"name": "年收益率",
|
|
773
|
+
"detail": "有价证券的年收益率。"
|
|
774
|
+
},
|
|
775
|
+
"frequency": {
|
|
776
|
+
"name": "频次",
|
|
777
|
+
"detail": "年付息次数。"
|
|
778
|
+
},
|
|
779
|
+
"basis": {
|
|
780
|
+
"name": "基准",
|
|
781
|
+
"detail": "要使用的日计数基准类型。"
|
|
750
782
|
}
|
|
751
783
|
}
|
|
752
784
|
},
|
|
@@ -760,13 +792,17 @@
|
|
|
760
792
|
}
|
|
761
793
|
],
|
|
762
794
|
"functionParameter": {
|
|
763
|
-
"
|
|
764
|
-
"name": "
|
|
765
|
-
"detail": "
|
|
795
|
+
"values": {
|
|
796
|
+
"name": "现金流",
|
|
797
|
+
"detail": "数组或对包含数字的单元格的引用。 这些数值代表一系列定期支出(负值)和收益(正值)。\n1.Values 必须至少包含一个正值和一个负值,才能计算修改后的内部回报率。 否则,MIRR 返回 #DIV/0! 。\n2.如果数组或引用参数包含文本、逻辑值或空白单元格,则这些值将被忽略;但包含零值的单元格将计算在内。"
|
|
766
798
|
},
|
|
767
|
-
"
|
|
768
|
-
"name": "
|
|
769
|
-
"detail": "
|
|
799
|
+
"financeRate": {
|
|
800
|
+
"name": "融资利率",
|
|
801
|
+
"detail": "现金流中使用的资金支付的利率。"
|
|
802
|
+
},
|
|
803
|
+
"reinvestRate": {
|
|
804
|
+
"name": "再投资收益率",
|
|
805
|
+
"detail": "将现金流再投资的收益率。"
|
|
770
806
|
}
|
|
771
807
|
}
|
|
772
808
|
},
|
|
@@ -832,13 +868,17 @@
|
|
|
832
868
|
}
|
|
833
869
|
],
|
|
834
870
|
"functionParameter": {
|
|
835
|
-
"
|
|
836
|
-
"name": "
|
|
837
|
-
"detail": "
|
|
871
|
+
"rate": {
|
|
872
|
+
"name": "贴现率",
|
|
873
|
+
"detail": "某一期间的贴现率。"
|
|
838
874
|
},
|
|
839
|
-
"
|
|
840
|
-
"name": "
|
|
841
|
-
"detail": "
|
|
875
|
+
"value1": {
|
|
876
|
+
"name": "现金流1",
|
|
877
|
+
"detail": "这些是代表支出及收入的 1 到 254 个参数。"
|
|
878
|
+
},
|
|
879
|
+
"value2": {
|
|
880
|
+
"name": "现金流2",
|
|
881
|
+
"detail": "这些是代表支出及收入的 1 到 254 个参数。"
|
|
842
882
|
}
|
|
843
883
|
}
|
|
844
884
|
},
|
|
@@ -852,13 +892,41 @@
|
|
|
852
892
|
}
|
|
853
893
|
],
|
|
854
894
|
"functionParameter": {
|
|
855
|
-
"
|
|
856
|
-
"name": "
|
|
857
|
-
"detail": "
|
|
895
|
+
"settlement": {
|
|
896
|
+
"name": "结算日",
|
|
897
|
+
"detail": "有价证券的结算日。"
|
|
858
898
|
},
|
|
859
|
-
"
|
|
860
|
-
"name": "
|
|
861
|
-
"detail": "
|
|
899
|
+
"maturity": {
|
|
900
|
+
"name": "到期日",
|
|
901
|
+
"detail": "有价证券的到期日。"
|
|
902
|
+
},
|
|
903
|
+
"issue": {
|
|
904
|
+
"name": "发行日",
|
|
905
|
+
"detail": "有价证券的发行日。"
|
|
906
|
+
},
|
|
907
|
+
"firstCoupon": {
|
|
908
|
+
"name": "首期付息日",
|
|
909
|
+
"detail": "有价证券的首期付息日。"
|
|
910
|
+
},
|
|
911
|
+
"rate": {
|
|
912
|
+
"name": "利率",
|
|
913
|
+
"detail": "有价证券的利率。"
|
|
914
|
+
},
|
|
915
|
+
"yld": {
|
|
916
|
+
"name": "年收益率",
|
|
917
|
+
"detail": "有价证券的年收益率。"
|
|
918
|
+
},
|
|
919
|
+
"redemption": {
|
|
920
|
+
"name": "清偿价",
|
|
921
|
+
"detail": "面值 ¥100 的有价证券的清偿价值。"
|
|
922
|
+
},
|
|
923
|
+
"frequency": {
|
|
924
|
+
"name": "频次",
|
|
925
|
+
"detail": "年付息次数。 如果按年支付,frequency = 1;按半年期支付,frequency = 2;按季支付,frequency = 4。"
|
|
926
|
+
},
|
|
927
|
+
"basis": {
|
|
928
|
+
"name": "基准",
|
|
929
|
+
"detail": "要使用的日计数基准类型。"
|
|
862
930
|
}
|
|
863
931
|
}
|
|
864
932
|
},
|
|
@@ -872,13 +940,41 @@
|
|
|
872
940
|
}
|
|
873
941
|
],
|
|
874
942
|
"functionParameter": {
|
|
875
|
-
"
|
|
876
|
-
"name": "
|
|
877
|
-
"detail": "
|
|
943
|
+
"settlement": {
|
|
944
|
+
"name": "结算日",
|
|
945
|
+
"detail": "有价证券的结算日。"
|
|
878
946
|
},
|
|
879
|
-
"
|
|
880
|
-
"name": "
|
|
881
|
-
"detail": "
|
|
947
|
+
"maturity": {
|
|
948
|
+
"name": "到期日",
|
|
949
|
+
"detail": "有价证券的到期日。"
|
|
950
|
+
},
|
|
951
|
+
"issue": {
|
|
952
|
+
"name": "发行日",
|
|
953
|
+
"detail": "有价证券的发行日。"
|
|
954
|
+
},
|
|
955
|
+
"firstCoupon": {
|
|
956
|
+
"name": "首期付息日",
|
|
957
|
+
"detail": "有价证券的首期付息日。"
|
|
958
|
+
},
|
|
959
|
+
"rate": {
|
|
960
|
+
"name": "利率",
|
|
961
|
+
"detail": "有价证券的利率。"
|
|
962
|
+
},
|
|
963
|
+
"pr": {
|
|
964
|
+
"name": "价格",
|
|
965
|
+
"detail": "有价证券的价格。"
|
|
966
|
+
},
|
|
967
|
+
"redemption": {
|
|
968
|
+
"name": "清偿价",
|
|
969
|
+
"detail": "面值 ¥100 的有价证券的清偿价值。"
|
|
970
|
+
},
|
|
971
|
+
"frequency": {
|
|
972
|
+
"name": "频次",
|
|
973
|
+
"detail": "年付息次数。 如果按年支付,frequency = 1;按半年期支付,frequency = 2;按季支付,frequency = 4。"
|
|
974
|
+
},
|
|
975
|
+
"basis": {
|
|
976
|
+
"name": "基准",
|
|
977
|
+
"detail": "要使用的日计数基准类型。"
|
|
882
978
|
}
|
|
883
979
|
}
|
|
884
980
|
},
|
|
@@ -892,13 +988,37 @@
|
|
|
892
988
|
}
|
|
893
989
|
],
|
|
894
990
|
"functionParameter": {
|
|
895
|
-
"
|
|
896
|
-
"name": "
|
|
897
|
-
"detail": "
|
|
991
|
+
"settlement": {
|
|
992
|
+
"name": "结算日",
|
|
993
|
+
"detail": "有价证券的结算日。"
|
|
898
994
|
},
|
|
899
|
-
"
|
|
900
|
-
"name": "
|
|
901
|
-
"detail": "
|
|
995
|
+
"maturity": {
|
|
996
|
+
"name": "到期日",
|
|
997
|
+
"detail": "有价证券的到期日。"
|
|
998
|
+
},
|
|
999
|
+
"lastInterest": {
|
|
1000
|
+
"name": "末期付息日",
|
|
1001
|
+
"detail": "有价证券的末期付息日。"
|
|
1002
|
+
},
|
|
1003
|
+
"rate": {
|
|
1004
|
+
"name": "利率",
|
|
1005
|
+
"detail": "有价证券的利率。"
|
|
1006
|
+
},
|
|
1007
|
+
"yld": {
|
|
1008
|
+
"name": "年收益率",
|
|
1009
|
+
"detail": "有价证券的年收益率。"
|
|
1010
|
+
},
|
|
1011
|
+
"redemption": {
|
|
1012
|
+
"name": "清偿价",
|
|
1013
|
+
"detail": "面值 ¥100 的有价证券的清偿价值。"
|
|
1014
|
+
},
|
|
1015
|
+
"frequency": {
|
|
1016
|
+
"name": "频次",
|
|
1017
|
+
"detail": "年付息次数。 如果按年支付,frequency = 1;按半年期支付,frequency = 2;按季支付,frequency = 4。"
|
|
1018
|
+
},
|
|
1019
|
+
"basis": {
|
|
1020
|
+
"name": "基准",
|
|
1021
|
+
"detail": "要使用的日计数基准类型。"
|
|
902
1022
|
}
|
|
903
1023
|
}
|
|
904
1024
|
},
|
|
@@ -912,13 +1032,37 @@
|
|
|
912
1032
|
}
|
|
913
1033
|
],
|
|
914
1034
|
"functionParameter": {
|
|
915
|
-
"
|
|
916
|
-
"name": "
|
|
917
|
-
"detail": "
|
|
1035
|
+
"settlement": {
|
|
1036
|
+
"name": "结算日",
|
|
1037
|
+
"detail": "有价证券的结算日。"
|
|
918
1038
|
},
|
|
919
|
-
"
|
|
920
|
-
"name": "
|
|
921
|
-
"detail": "
|
|
1039
|
+
"maturity": {
|
|
1040
|
+
"name": "到期日",
|
|
1041
|
+
"detail": "有价证券的到期日。"
|
|
1042
|
+
},
|
|
1043
|
+
"lastInterest": {
|
|
1044
|
+
"name": "末期付息日",
|
|
1045
|
+
"detail": "有价证券的末期付息日。"
|
|
1046
|
+
},
|
|
1047
|
+
"rate": {
|
|
1048
|
+
"name": "利率",
|
|
1049
|
+
"detail": "有价证券的利率。"
|
|
1050
|
+
},
|
|
1051
|
+
"pr": {
|
|
1052
|
+
"name": "价格",
|
|
1053
|
+
"detail": "有价证券的价格。"
|
|
1054
|
+
},
|
|
1055
|
+
"redemption": {
|
|
1056
|
+
"name": "清偿价",
|
|
1057
|
+
"detail": "面值 ¥100 的有价证券的清偿价值。"
|
|
1058
|
+
},
|
|
1059
|
+
"frequency": {
|
|
1060
|
+
"name": "频次",
|
|
1061
|
+
"detail": "年付息次数。 如果按年支付,frequency = 1;按半年期支付,frequency = 2;按季支付,frequency = 4。"
|
|
1062
|
+
},
|
|
1063
|
+
"basis": {
|
|
1064
|
+
"name": "基准",
|
|
1065
|
+
"detail": "要使用的日计数基准类型。"
|
|
922
1066
|
}
|
|
923
1067
|
}
|
|
924
1068
|
},
|
|
@@ -932,13 +1076,17 @@
|
|
|
932
1076
|
}
|
|
933
1077
|
],
|
|
934
1078
|
"functionParameter": {
|
|
935
|
-
"
|
|
936
|
-
"name": "
|
|
937
|
-
"detail": "
|
|
1079
|
+
"rate": {
|
|
1080
|
+
"name": "利率",
|
|
1081
|
+
"detail": "每个周期的利率。"
|
|
938
1082
|
},
|
|
939
|
-
"
|
|
940
|
-
"name": "
|
|
941
|
-
"detail": "
|
|
1083
|
+
"pv": {
|
|
1084
|
+
"name": "现值",
|
|
1085
|
+
"detail": "投资的现值。"
|
|
1086
|
+
},
|
|
1087
|
+
"fv": {
|
|
1088
|
+
"name": "未来价值",
|
|
1089
|
+
"detail": "投资的预期未来价值。"
|
|
942
1090
|
}
|
|
943
1091
|
}
|
|
944
1092
|
},
|
|
@@ -1020,13 +1168,33 @@
|
|
|
1020
1168
|
}
|
|
1021
1169
|
],
|
|
1022
1170
|
"functionParameter": {
|
|
1023
|
-
"
|
|
1024
|
-
"name": "
|
|
1025
|
-
"detail": "
|
|
1171
|
+
"settlement": {
|
|
1172
|
+
"name": "结算日",
|
|
1173
|
+
"detail": "有价证券的结算日。"
|
|
1026
1174
|
},
|
|
1027
|
-
"
|
|
1028
|
-
"name": "
|
|
1029
|
-
"detail": "
|
|
1175
|
+
"maturity": {
|
|
1176
|
+
"name": "到期日",
|
|
1177
|
+
"detail": "有价证券的到期日。"
|
|
1178
|
+
},
|
|
1179
|
+
"rate": {
|
|
1180
|
+
"name": "利率",
|
|
1181
|
+
"detail": "有价证券的利率。"
|
|
1182
|
+
},
|
|
1183
|
+
"yld": {
|
|
1184
|
+
"name": "年收益率",
|
|
1185
|
+
"detail": "有价证券的年收益率。"
|
|
1186
|
+
},
|
|
1187
|
+
"redemption": {
|
|
1188
|
+
"name": "清偿价",
|
|
1189
|
+
"detail": "面值 ¥100 的有价证券的清偿价值。"
|
|
1190
|
+
},
|
|
1191
|
+
"frequency": {
|
|
1192
|
+
"name": "频次",
|
|
1193
|
+
"detail": "年付息次数。 如果按年支付,frequency = 1;按半年期支付,frequency = 2;按季支付,frequency = 4。"
|
|
1194
|
+
},
|
|
1195
|
+
"basis": {
|
|
1196
|
+
"name": "基准",
|
|
1197
|
+
"detail": "要使用的日计数基准类型。"
|
|
1030
1198
|
}
|
|
1031
1199
|
}
|
|
1032
1200
|
},
|
|
@@ -1040,13 +1208,25 @@
|
|
|
1040
1208
|
}
|
|
1041
1209
|
],
|
|
1042
1210
|
"functionParameter": {
|
|
1043
|
-
"
|
|
1044
|
-
"name": "
|
|
1045
|
-
"detail": "
|
|
1211
|
+
"settlement": {
|
|
1212
|
+
"name": "结算日",
|
|
1213
|
+
"detail": "有价证券的结算日。"
|
|
1046
1214
|
},
|
|
1047
|
-
"
|
|
1048
|
-
"name": "
|
|
1049
|
-
"detail": "
|
|
1215
|
+
"maturity": {
|
|
1216
|
+
"name": "到期日",
|
|
1217
|
+
"detail": "有价证券的到期日。"
|
|
1218
|
+
},
|
|
1219
|
+
"discount": {
|
|
1220
|
+
"name": "贴现率",
|
|
1221
|
+
"detail": "有价证券的贴现率。"
|
|
1222
|
+
},
|
|
1223
|
+
"redemption": {
|
|
1224
|
+
"name": "清偿价",
|
|
1225
|
+
"detail": "面值 ¥100 的有价证券的清偿价值。"
|
|
1226
|
+
},
|
|
1227
|
+
"basis": {
|
|
1228
|
+
"name": "基准",
|
|
1229
|
+
"detail": "要使用的日计数基准类型。"
|
|
1050
1230
|
}
|
|
1051
1231
|
}
|
|
1052
1232
|
},
|
|
@@ -1060,13 +1240,29 @@
|
|
|
1060
1240
|
}
|
|
1061
1241
|
],
|
|
1062
1242
|
"functionParameter": {
|
|
1063
|
-
"
|
|
1064
|
-
"name": "
|
|
1065
|
-
"detail": "
|
|
1243
|
+
"settlement": {
|
|
1244
|
+
"name": "结算日",
|
|
1245
|
+
"detail": "有价证券的结算日。"
|
|
1066
1246
|
},
|
|
1067
|
-
"
|
|
1068
|
-
"name": "
|
|
1069
|
-
"detail": "
|
|
1247
|
+
"maturity": {
|
|
1248
|
+
"name": "到期日",
|
|
1249
|
+
"detail": "有价证券的到期日。"
|
|
1250
|
+
},
|
|
1251
|
+
"issue": {
|
|
1252
|
+
"name": "发行日",
|
|
1253
|
+
"detail": "有价证券的发行日。"
|
|
1254
|
+
},
|
|
1255
|
+
"rate": {
|
|
1256
|
+
"name": "利率",
|
|
1257
|
+
"detail": "有价证券的利率。"
|
|
1258
|
+
},
|
|
1259
|
+
"yld": {
|
|
1260
|
+
"name": "年收益率",
|
|
1261
|
+
"detail": "有价证券的年收益率。"
|
|
1262
|
+
},
|
|
1263
|
+
"basis": {
|
|
1264
|
+
"name": "基准",
|
|
1265
|
+
"detail": "要使用的日计数基准类型。"
|
|
1070
1266
|
}
|
|
1071
1267
|
}
|
|
1072
1268
|
},
|
|
@@ -1148,13 +1344,25 @@
|
|
|
1148
1344
|
}
|
|
1149
1345
|
],
|
|
1150
1346
|
"functionParameter": {
|
|
1151
|
-
"
|
|
1152
|
-
"name": "
|
|
1153
|
-
"detail": "
|
|
1347
|
+
"settlement": {
|
|
1348
|
+
"name": "结算日",
|
|
1349
|
+
"detail": "有价证券的结算日。"
|
|
1154
1350
|
},
|
|
1155
|
-
"
|
|
1156
|
-
"name": "
|
|
1157
|
-
"detail": "
|
|
1351
|
+
"maturity": {
|
|
1352
|
+
"name": "到期日",
|
|
1353
|
+
"detail": "有价证券的到期日。"
|
|
1354
|
+
},
|
|
1355
|
+
"investment": {
|
|
1356
|
+
"name": "投资额",
|
|
1357
|
+
"detail": "有价证券的投资额。"
|
|
1358
|
+
},
|
|
1359
|
+
"discount": {
|
|
1360
|
+
"name": "贴现率",
|
|
1361
|
+
"detail": "有价证券的贴现率。"
|
|
1362
|
+
},
|
|
1363
|
+
"basis": {
|
|
1364
|
+
"name": "基准",
|
|
1365
|
+
"detail": "要使用的日计数基准类型。"
|
|
1158
1366
|
}
|
|
1159
1367
|
}
|
|
1160
1368
|
},
|
|
@@ -1168,13 +1376,17 @@
|
|
|
1168
1376
|
}
|
|
1169
1377
|
],
|
|
1170
1378
|
"functionParameter": {
|
|
1171
|
-
"
|
|
1172
|
-
"name": "
|
|
1173
|
-
"detail": "
|
|
1379
|
+
"nper": {
|
|
1380
|
+
"name": "总期数",
|
|
1381
|
+
"detail": "投资的周期数。"
|
|
1174
1382
|
},
|
|
1175
|
-
"
|
|
1176
|
-
"name": "
|
|
1177
|
-
"detail": "
|
|
1383
|
+
"pv": {
|
|
1384
|
+
"name": "现值",
|
|
1385
|
+
"detail": "投资的现值。"
|
|
1386
|
+
},
|
|
1387
|
+
"fv": {
|
|
1388
|
+
"name": "未来价值",
|
|
1389
|
+
"detail": "投资的未来价值。"
|
|
1178
1390
|
}
|
|
1179
1391
|
}
|
|
1180
1392
|
},
|
|
@@ -1188,13 +1400,17 @@
|
|
|
1188
1400
|
}
|
|
1189
1401
|
],
|
|
1190
1402
|
"functionParameter": {
|
|
1191
|
-
"
|
|
1192
|
-
"name": "
|
|
1193
|
-
"detail": "
|
|
1403
|
+
"cost": {
|
|
1404
|
+
"name": "资产原值",
|
|
1405
|
+
"detail": "资产原值。"
|
|
1194
1406
|
},
|
|
1195
|
-
"
|
|
1196
|
-
"name": "
|
|
1197
|
-
"detail": "
|
|
1407
|
+
"salvage": {
|
|
1408
|
+
"name": "资产残值",
|
|
1409
|
+
"detail": "折旧末尾时的值(有时也称为资产残值)。"
|
|
1410
|
+
},
|
|
1411
|
+
"life": {
|
|
1412
|
+
"name": "资产使用寿命",
|
|
1413
|
+
"detail": "资产的折旧期数(有时也称作资产的使用寿命)。"
|
|
1198
1414
|
}
|
|
1199
1415
|
}
|
|
1200
1416
|
},
|
|
@@ -1208,13 +1424,21 @@
|
|
|
1208
1424
|
}
|
|
1209
1425
|
],
|
|
1210
1426
|
"functionParameter": {
|
|
1211
|
-
"
|
|
1212
|
-
"name": "
|
|
1213
|
-
"detail": "
|
|
1427
|
+
"cost": {
|
|
1428
|
+
"name": "资产原值",
|
|
1429
|
+
"detail": "资产原值。"
|
|
1214
1430
|
},
|
|
1215
|
-
"
|
|
1216
|
-
"name": "
|
|
1217
|
-
"detail": "
|
|
1431
|
+
"salvage": {
|
|
1432
|
+
"name": "资产残值",
|
|
1433
|
+
"detail": "折旧末尾时的值(有时也称为资产残值)。"
|
|
1434
|
+
},
|
|
1435
|
+
"life": {
|
|
1436
|
+
"name": "资产使用寿命",
|
|
1437
|
+
"detail": "资产的折旧期数(有时也称作资产的使用寿命)。"
|
|
1438
|
+
},
|
|
1439
|
+
"per": {
|
|
1440
|
+
"name": "期间",
|
|
1441
|
+
"detail": "期间。"
|
|
1218
1442
|
}
|
|
1219
1443
|
}
|
|
1220
1444
|
},
|
|
@@ -1228,13 +1452,17 @@
|
|
|
1228
1452
|
}
|
|
1229
1453
|
],
|
|
1230
1454
|
"functionParameter": {
|
|
1231
|
-
"
|
|
1232
|
-
"name": "
|
|
1233
|
-
"detail": "
|
|
1455
|
+
"settlement": {
|
|
1456
|
+
"name": "结算日",
|
|
1457
|
+
"detail": "国库券的结算日。"
|
|
1234
1458
|
},
|
|
1235
|
-
"
|
|
1236
|
-
"name": "
|
|
1237
|
-
"detail": "
|
|
1459
|
+
"maturity": {
|
|
1460
|
+
"name": "到期日",
|
|
1461
|
+
"detail": "国库券的到期日。"
|
|
1462
|
+
},
|
|
1463
|
+
"discount": {
|
|
1464
|
+
"name": "贴现率",
|
|
1465
|
+
"detail": "国库券的贴现率。"
|
|
1238
1466
|
}
|
|
1239
1467
|
}
|
|
1240
1468
|
},
|
|
@@ -1248,13 +1476,17 @@
|
|
|
1248
1476
|
}
|
|
1249
1477
|
],
|
|
1250
1478
|
"functionParameter": {
|
|
1251
|
-
"
|
|
1252
|
-
"name": "
|
|
1253
|
-
"detail": "
|
|
1479
|
+
"settlement": {
|
|
1480
|
+
"name": "结算日",
|
|
1481
|
+
"detail": "国库券的结算日。"
|
|
1254
1482
|
},
|
|
1255
|
-
"
|
|
1256
|
-
"name": "
|
|
1257
|
-
"detail": "
|
|
1483
|
+
"maturity": {
|
|
1484
|
+
"name": "到期日",
|
|
1485
|
+
"detail": "国库券的到期日。"
|
|
1486
|
+
},
|
|
1487
|
+
"discount": {
|
|
1488
|
+
"name": "贴现率",
|
|
1489
|
+
"detail": "国库券的贴现率。"
|
|
1258
1490
|
}
|
|
1259
1491
|
}
|
|
1260
1492
|
},
|
|
@@ -1268,13 +1500,17 @@
|
|
|
1268
1500
|
}
|
|
1269
1501
|
],
|
|
1270
1502
|
"functionParameter": {
|
|
1271
|
-
"
|
|
1272
|
-
"name": "
|
|
1273
|
-
"detail": "
|
|
1503
|
+
"settlement": {
|
|
1504
|
+
"name": "结算日",
|
|
1505
|
+
"detail": "国库券的结算日。"
|
|
1274
1506
|
},
|
|
1275
|
-
"
|
|
1276
|
-
"name": "
|
|
1277
|
-
"detail": "
|
|
1507
|
+
"maturity": {
|
|
1508
|
+
"name": "到期日",
|
|
1509
|
+
"detail": "国库券的到期日。"
|
|
1510
|
+
},
|
|
1511
|
+
"pr": {
|
|
1512
|
+
"name": "价格",
|
|
1513
|
+
"detail": "面值 ¥100 的国库券的价格。"
|
|
1278
1514
|
}
|
|
1279
1515
|
}
|
|
1280
1516
|
},
|
|
@@ -1288,13 +1524,33 @@
|
|
|
1288
1524
|
}
|
|
1289
1525
|
],
|
|
1290
1526
|
"functionParameter": {
|
|
1291
|
-
"
|
|
1292
|
-
"name": "
|
|
1293
|
-
"detail": "
|
|
1527
|
+
"cost": {
|
|
1528
|
+
"name": "成本",
|
|
1529
|
+
"detail": "资产原值。"
|
|
1294
1530
|
},
|
|
1295
|
-
"
|
|
1296
|
-
"name": "
|
|
1297
|
-
"detail": "
|
|
1531
|
+
"salvage": {
|
|
1532
|
+
"name": "残值",
|
|
1533
|
+
"detail": "折旧末尾时的值(有时也称为资产残值)。"
|
|
1534
|
+
},
|
|
1535
|
+
"life": {
|
|
1536
|
+
"name": "使用寿命",
|
|
1537
|
+
"detail": "资产的折旧期数(有时也称作资产的使用寿命)。"
|
|
1538
|
+
},
|
|
1539
|
+
"startPeriod": {
|
|
1540
|
+
"name": "起始时期",
|
|
1541
|
+
"detail": "您要计算折旧的起始时期。"
|
|
1542
|
+
},
|
|
1543
|
+
"endPeriod": {
|
|
1544
|
+
"name": "终止时期",
|
|
1545
|
+
"detail": "您要计算折旧的终止时期。"
|
|
1546
|
+
},
|
|
1547
|
+
"factor": {
|
|
1548
|
+
"name": "速率",
|
|
1549
|
+
"detail": "余额递减速率。如果省略影响因素,则假定为2(双倍余额递减法)。"
|
|
1550
|
+
},
|
|
1551
|
+
"noSwitch": {
|
|
1552
|
+
"name": "不切换",
|
|
1553
|
+
"detail": "逻辑值,指定当折旧值大于余额递减计算值时,是否转用直线折旧法。"
|
|
1298
1554
|
}
|
|
1299
1555
|
}
|
|
1300
1556
|
},
|
|
@@ -1308,13 +1564,17 @@
|
|
|
1308
1564
|
}
|
|
1309
1565
|
],
|
|
1310
1566
|
"functionParameter": {
|
|
1311
|
-
"
|
|
1312
|
-
"name": "
|
|
1313
|
-
"detail": "
|
|
1567
|
+
"values": {
|
|
1568
|
+
"name": "现金流",
|
|
1569
|
+
"detail": "与 dates 中的支付时间相对应的一系列现金流。 首期支付是可选的,并与投资开始时的成本或支付有关。 如果第一个值是成本或支付,则它必须是负值。 所有后续支付都基于 365 天/年贴现。 值系列中必须至少包含一个正值和一个负值。"
|
|
1314
1570
|
},
|
|
1315
|
-
"
|
|
1316
|
-
"name": "
|
|
1317
|
-
"detail": "
|
|
1571
|
+
"dates": {
|
|
1572
|
+
"name": "日期表",
|
|
1573
|
+
"detail": "与现金流支付相对应的支付日期表。 日期可以按任意顺序出现。"
|
|
1574
|
+
},
|
|
1575
|
+
"guess": {
|
|
1576
|
+
"name": "估计值",
|
|
1577
|
+
"detail": "对函数 XIRR 计算结果的估计值。"
|
|
1318
1578
|
}
|
|
1319
1579
|
}
|
|
1320
1580
|
},
|
|
@@ -1328,13 +1588,17 @@
|
|
|
1328
1588
|
}
|
|
1329
1589
|
],
|
|
1330
1590
|
"functionParameter": {
|
|
1331
|
-
"
|
|
1332
|
-
"name": "
|
|
1333
|
-
"detail": "
|
|
1591
|
+
"rate": {
|
|
1592
|
+
"name": "贴现率",
|
|
1593
|
+
"detail": "应用于现金流的贴现率。"
|
|
1334
1594
|
},
|
|
1335
|
-
"
|
|
1336
|
-
"name": "
|
|
1337
|
-
"detail": "
|
|
1595
|
+
"values": {
|
|
1596
|
+
"name": "现金流",
|
|
1597
|
+
"detail": "与 dates 中的支付时间相对应的一系列现金流。 首期支付是可选的,并与投资开始时的成本或支付有关。 如果第一个值是成本或支付,则它必须是负值。 所有后续支付都基于 365 天/年贴现。 值系列中必须至少包含一个正值和一个负值。"
|
|
1598
|
+
},
|
|
1599
|
+
"dates": {
|
|
1600
|
+
"name": "日期表",
|
|
1601
|
+
"detail": "与现金流支付相对应的支付日期表。 日期可以按任意顺序出现。"
|
|
1338
1602
|
}
|
|
1339
1603
|
}
|
|
1340
1604
|
},
|
|
@@ -1348,13 +1612,33 @@
|
|
|
1348
1612
|
}
|
|
1349
1613
|
],
|
|
1350
1614
|
"functionParameter": {
|
|
1351
|
-
"
|
|
1352
|
-
"name": "
|
|
1353
|
-
"detail": "
|
|
1615
|
+
"settlement": {
|
|
1616
|
+
"name": "结算日",
|
|
1617
|
+
"detail": "有价证券的结算日。"
|
|
1354
1618
|
},
|
|
1355
|
-
"
|
|
1356
|
-
"name": "
|
|
1357
|
-
"detail": "
|
|
1619
|
+
"maturity": {
|
|
1620
|
+
"name": "到期日",
|
|
1621
|
+
"detail": "有价证券的到期日。"
|
|
1622
|
+
},
|
|
1623
|
+
"rate": {
|
|
1624
|
+
"name": "利率",
|
|
1625
|
+
"detail": "有价证券的利率。"
|
|
1626
|
+
},
|
|
1627
|
+
"pr": {
|
|
1628
|
+
"name": "价格",
|
|
1629
|
+
"detail": "有价证券的价格(按面值为 ¥100 计算)。"
|
|
1630
|
+
},
|
|
1631
|
+
"redemption": {
|
|
1632
|
+
"name": "清偿价",
|
|
1633
|
+
"detail": "面值 ¥100 的有价证券的清偿价值。"
|
|
1634
|
+
},
|
|
1635
|
+
"frequency": {
|
|
1636
|
+
"name": "频次",
|
|
1637
|
+
"detail": "年付息次数。 如果按年支付,frequency = 1;按半年期支付,frequency = 2;按季支付,frequency = 4。"
|
|
1638
|
+
},
|
|
1639
|
+
"basis": {
|
|
1640
|
+
"name": "基准",
|
|
1641
|
+
"detail": "要使用的日计数基准类型。"
|
|
1358
1642
|
}
|
|
1359
1643
|
}
|
|
1360
1644
|
},
|
|
@@ -1366,15 +1650,27 @@
|
|
|
1366
1650
|
"title": "教学",
|
|
1367
1651
|
"url": "https://support.microsoft.com/zh-cn/office/yielddisc-%E5%87%BD%E6%95%B0-a9dbdbae-7dae-46de-b995-615faffaaed7"
|
|
1368
1652
|
}
|
|
1369
|
-
],
|
|
1370
|
-
"functionParameter": {
|
|
1371
|
-
"
|
|
1372
|
-
"name": "
|
|
1373
|
-
"detail": "
|
|
1653
|
+
],
|
|
1654
|
+
"functionParameter": {
|
|
1655
|
+
"settlement": {
|
|
1656
|
+
"name": "结算日",
|
|
1657
|
+
"detail": "有价证券的结算日。"
|
|
1374
1658
|
},
|
|
1375
|
-
"
|
|
1376
|
-
"name": "
|
|
1377
|
-
"detail": "
|
|
1659
|
+
"maturity": {
|
|
1660
|
+
"name": "到期日",
|
|
1661
|
+
"detail": "有价证券的到期日。"
|
|
1662
|
+
},
|
|
1663
|
+
"pr": {
|
|
1664
|
+
"name": "价格",
|
|
1665
|
+
"detail": "有价证券的价格(按面值为 ¥100 计算)。"
|
|
1666
|
+
},
|
|
1667
|
+
"redemption": {
|
|
1668
|
+
"name": "清偿价",
|
|
1669
|
+
"detail": "面值 ¥100 的有价证券的清偿价值。"
|
|
1670
|
+
},
|
|
1671
|
+
"basis": {
|
|
1672
|
+
"name": "基准",
|
|
1673
|
+
"detail": "要使用的日计数基准类型。"
|
|
1378
1674
|
}
|
|
1379
1675
|
}
|
|
1380
1676
|
},
|
|
@@ -1388,13 +1684,29 @@
|
|
|
1388
1684
|
}
|
|
1389
1685
|
],
|
|
1390
1686
|
"functionParameter": {
|
|
1391
|
-
"
|
|
1392
|
-
"name": "
|
|
1393
|
-
"detail": "
|
|
1687
|
+
"settlement": {
|
|
1688
|
+
"name": "结算日",
|
|
1689
|
+
"detail": "有价证券的结算日。"
|
|
1394
1690
|
},
|
|
1395
|
-
"
|
|
1396
|
-
"name": "
|
|
1397
|
-
"detail": "
|
|
1691
|
+
"maturity": {
|
|
1692
|
+
"name": "到期日",
|
|
1693
|
+
"detail": "有价证券的到期日。"
|
|
1694
|
+
},
|
|
1695
|
+
"issue": {
|
|
1696
|
+
"name": "发行日",
|
|
1697
|
+
"detail": "有价证券的发行日。"
|
|
1698
|
+
},
|
|
1699
|
+
"rate": {
|
|
1700
|
+
"name": "利率",
|
|
1701
|
+
"detail": "有价证券的利率。"
|
|
1702
|
+
},
|
|
1703
|
+
"pr": {
|
|
1704
|
+
"name": "价格",
|
|
1705
|
+
"detail": "有价证券的价格(按面值为 ¥100 计算)。"
|
|
1706
|
+
},
|
|
1707
|
+
"basis": {
|
|
1708
|
+
"name": "基准",
|
|
1709
|
+
"detail": "要使用的日计数基准类型。"
|
|
1398
1710
|
}
|
|
1399
1711
|
}
|
|
1400
1712
|
},
|
|
@@ -5180,13 +5492,17 @@
|
|
|
5180
5492
|
}
|
|
5181
5493
|
],
|
|
5182
5494
|
"functionParameter": {
|
|
5183
|
-
"
|
|
5184
|
-
"name": "
|
|
5185
|
-
"detail": "
|
|
5495
|
+
"number": {
|
|
5496
|
+
"name": "数值",
|
|
5497
|
+
"detail": "要找到其排位的数字。"
|
|
5186
5498
|
},
|
|
5187
|
-
"
|
|
5188
|
-
"name": "
|
|
5189
|
-
"detail": "
|
|
5499
|
+
"ref": {
|
|
5500
|
+
"name": "数字列表",
|
|
5501
|
+
"detail": "对数字列表的引用。Ref 中的非数字值会被忽略。"
|
|
5502
|
+
},
|
|
5503
|
+
"order": {
|
|
5504
|
+
"name": "排位方式",
|
|
5505
|
+
"detail": "一个指定数字排位方式的数字。0 或省略为降序,非 0 为升序。"
|
|
5190
5506
|
}
|
|
5191
5507
|
}
|
|
5192
5508
|
},
|
|
@@ -5200,13 +5516,17 @@
|
|
|
5200
5516
|
}
|
|
5201
5517
|
],
|
|
5202
5518
|
"functionParameter": {
|
|
5203
|
-
"
|
|
5204
|
-
"name": "
|
|
5205
|
-
"detail": "
|
|
5519
|
+
"number": {
|
|
5520
|
+
"name": "数值",
|
|
5521
|
+
"detail": "要找到其排位的数字。"
|
|
5206
5522
|
},
|
|
5207
|
-
"
|
|
5208
|
-
"name": "
|
|
5209
|
-
"detail": "
|
|
5523
|
+
"ref": {
|
|
5524
|
+
"name": "数字列表",
|
|
5525
|
+
"detail": "对数字列表的引用。Ref 中的非数字值会被忽略。"
|
|
5526
|
+
},
|
|
5527
|
+
"order": {
|
|
5528
|
+
"name": "排位方式",
|
|
5529
|
+
"detail": "一个指定数字排位方式的数字。0 或省略为降序,非 0 为升序。"
|
|
5210
5530
|
}
|
|
5211
5531
|
}
|
|
5212
5532
|
},
|
|
@@ -8938,13 +9258,13 @@
|
|
|
8938
9258
|
}
|
|
8939
9259
|
],
|
|
8940
9260
|
"functionParameter": {
|
|
8941
|
-
"
|
|
8942
|
-
"name": "
|
|
8943
|
-
"detail": "
|
|
9261
|
+
"number": {
|
|
9262
|
+
"name": "数值",
|
|
9263
|
+
"detail": "要针对阈值进行测试的值。"
|
|
8944
9264
|
},
|
|
8945
|
-
"
|
|
8946
|
-
"name": "
|
|
8947
|
-
"detail": "
|
|
9265
|
+
"step": {
|
|
9266
|
+
"name": "阈值",
|
|
9267
|
+
"detail": "阈值。如果省略阈值,则 GESTEP 使用零。"
|
|
8948
9268
|
}
|
|
8949
9269
|
}
|
|
8950
9270
|
},
|
|
@@ -9014,13 +9334,9 @@
|
|
|
9014
9334
|
}
|
|
9015
9335
|
],
|
|
9016
9336
|
"functionParameter": {
|
|
9017
|
-
"
|
|
9018
|
-
"name": "
|
|
9019
|
-
"detail": "
|
|
9020
|
-
},
|
|
9021
|
-
"number2": {
|
|
9022
|
-
"name": "number2",
|
|
9023
|
-
"detail": "second"
|
|
9337
|
+
"inumber": {
|
|
9338
|
+
"name": "复数",
|
|
9339
|
+
"detail": "需要计算其绝对值的复数。"
|
|
9024
9340
|
}
|
|
9025
9341
|
}
|
|
9026
9342
|
},
|
|
@@ -9034,13 +9350,9 @@
|
|
|
9034
9350
|
}
|
|
9035
9351
|
],
|
|
9036
9352
|
"functionParameter": {
|
|
9037
|
-
"
|
|
9038
|
-
"name": "
|
|
9039
|
-
"detail": "
|
|
9040
|
-
},
|
|
9041
|
-
"number2": {
|
|
9042
|
-
"name": "number2",
|
|
9043
|
-
"detail": "second"
|
|
9353
|
+
"inumber": {
|
|
9354
|
+
"name": "复数",
|
|
9355
|
+
"detail": "需要计算其虚系数的复数。"
|
|
9044
9356
|
}
|
|
9045
9357
|
}
|
|
9046
9358
|
},
|
|
@@ -9054,13 +9366,9 @@
|
|
|
9054
9366
|
}
|
|
9055
9367
|
],
|
|
9056
9368
|
"functionParameter": {
|
|
9057
|
-
"
|
|
9058
|
-
"name": "
|
|
9059
|
-
"detail": "
|
|
9060
|
-
},
|
|
9061
|
-
"number2": {
|
|
9062
|
-
"name": "number2",
|
|
9063
|
-
"detail": "second"
|
|
9369
|
+
"inumber": {
|
|
9370
|
+
"name": "复数",
|
|
9371
|
+
"detail": "要为其参数 theta 的复数。"
|
|
9064
9372
|
}
|
|
9065
9373
|
}
|
|
9066
9374
|
},
|
|
@@ -9074,13 +9382,9 @@
|
|
|
9074
9382
|
}
|
|
9075
9383
|
],
|
|
9076
9384
|
"functionParameter": {
|
|
9077
|
-
"
|
|
9078
|
-
"name": "
|
|
9079
|
-
"detail": "
|
|
9080
|
-
},
|
|
9081
|
-
"number2": {
|
|
9082
|
-
"name": "number2",
|
|
9083
|
-
"detail": "second"
|
|
9385
|
+
"inumber": {
|
|
9386
|
+
"name": "复数",
|
|
9387
|
+
"detail": "需要计算其共轭数的复数。"
|
|
9084
9388
|
}
|
|
9085
9389
|
}
|
|
9086
9390
|
},
|
|
@@ -9094,13 +9398,9 @@
|
|
|
9094
9398
|
}
|
|
9095
9399
|
],
|
|
9096
9400
|
"functionParameter": {
|
|
9097
|
-
"
|
|
9098
|
-
"name": "
|
|
9099
|
-
"detail": "
|
|
9100
|
-
},
|
|
9101
|
-
"number2": {
|
|
9102
|
-
"name": "number2",
|
|
9103
|
-
"detail": "second"
|
|
9401
|
+
"inumber": {
|
|
9402
|
+
"name": "复数",
|
|
9403
|
+
"detail": "需要计算其余弦的复数。"
|
|
9104
9404
|
}
|
|
9105
9405
|
}
|
|
9106
9406
|
},
|
|
@@ -9114,19 +9414,15 @@
|
|
|
9114
9414
|
}
|
|
9115
9415
|
],
|
|
9116
9416
|
"functionParameter": {
|
|
9117
|
-
"
|
|
9118
|
-
"name": "
|
|
9119
|
-
"detail": "
|
|
9120
|
-
},
|
|
9121
|
-
"number2": {
|
|
9122
|
-
"name": "number2",
|
|
9123
|
-
"detail": "second"
|
|
9417
|
+
"inumber": {
|
|
9418
|
+
"name": "复数",
|
|
9419
|
+
"detail": "需要计算其双曲余弦值的复数。"
|
|
9124
9420
|
}
|
|
9125
9421
|
}
|
|
9126
9422
|
},
|
|
9127
9423
|
"IMCOT": {
|
|
9128
|
-
"description": "
|
|
9129
|
-
"abstract": "
|
|
9424
|
+
"description": "返回复数的余切值",
|
|
9425
|
+
"abstract": "返回复数的余切值",
|
|
9130
9426
|
"links": [
|
|
9131
9427
|
{
|
|
9132
9428
|
"title": "教学",
|
|
@@ -9134,13 +9430,9 @@
|
|
|
9134
9430
|
}
|
|
9135
9431
|
],
|
|
9136
9432
|
"functionParameter": {
|
|
9137
|
-
"
|
|
9138
|
-
"name": "
|
|
9139
|
-
"detail": "
|
|
9140
|
-
},
|
|
9141
|
-
"number2": {
|
|
9142
|
-
"name": "number2",
|
|
9143
|
-
"detail": "second"
|
|
9433
|
+
"inumber": {
|
|
9434
|
+
"name": "复数",
|
|
9435
|
+
"detail": "需要计算其余切的复数。"
|
|
9144
9436
|
}
|
|
9145
9437
|
}
|
|
9146
9438
|
},
|
|
@@ -9154,13 +9446,9 @@
|
|
|
9154
9446
|
}
|
|
9155
9447
|
],
|
|
9156
9448
|
"functionParameter": {
|
|
9157
|
-
"
|
|
9158
|
-
"name": "
|
|
9159
|
-
"detail": "
|
|
9160
|
-
},
|
|
9161
|
-
"number2": {
|
|
9162
|
-
"name": "number2",
|
|
9163
|
-
"detail": "second"
|
|
9449
|
+
"inumber": {
|
|
9450
|
+
"name": "复数",
|
|
9451
|
+
"detail": "需要计算其余割值的复数。"
|
|
9164
9452
|
}
|
|
9165
9453
|
}
|
|
9166
9454
|
},
|
|
@@ -9174,13 +9462,9 @@
|
|
|
9174
9462
|
}
|
|
9175
9463
|
],
|
|
9176
9464
|
"functionParameter": {
|
|
9177
|
-
"
|
|
9178
|
-
"name": "
|
|
9179
|
-
"detail": "
|
|
9180
|
-
},
|
|
9181
|
-
"number2": {
|
|
9182
|
-
"name": "number2",
|
|
9183
|
-
"detail": "second"
|
|
9465
|
+
"inumber": {
|
|
9466
|
+
"name": "复数",
|
|
9467
|
+
"detail": "需要计算其双曲余割值的复数。"
|
|
9184
9468
|
}
|
|
9185
9469
|
}
|
|
9186
9470
|
},
|
|
@@ -9194,13 +9478,13 @@
|
|
|
9194
9478
|
}
|
|
9195
9479
|
],
|
|
9196
9480
|
"functionParameter": {
|
|
9197
|
-
"
|
|
9198
|
-
"name": "
|
|
9199
|
-
"detail": "
|
|
9481
|
+
"inumber1": {
|
|
9482
|
+
"name": "复数分子",
|
|
9483
|
+
"detail": "复数分子或被除数。"
|
|
9200
9484
|
},
|
|
9201
|
-
"
|
|
9202
|
-
"name": "
|
|
9203
|
-
"detail": "
|
|
9485
|
+
"inumber2": {
|
|
9486
|
+
"name": "复数分母",
|
|
9487
|
+
"detail": "复数分母或除数。"
|
|
9204
9488
|
}
|
|
9205
9489
|
}
|
|
9206
9490
|
},
|
|
@@ -9214,13 +9498,9 @@
|
|
|
9214
9498
|
}
|
|
9215
9499
|
],
|
|
9216
9500
|
"functionParameter": {
|
|
9217
|
-
"
|
|
9218
|
-
"name": "
|
|
9219
|
-
"detail": "
|
|
9220
|
-
},
|
|
9221
|
-
"number2": {
|
|
9222
|
-
"name": "number2",
|
|
9223
|
-
"detail": "second"
|
|
9501
|
+
"inumber": {
|
|
9502
|
+
"name": "复数",
|
|
9503
|
+
"detail": "需要计算其指数的复数。"
|
|
9224
9504
|
}
|
|
9225
9505
|
}
|
|
9226
9506
|
},
|
|
@@ -9234,13 +9514,9 @@
|
|
|
9234
9514
|
}
|
|
9235
9515
|
],
|
|
9236
9516
|
"functionParameter": {
|
|
9237
|
-
"
|
|
9238
|
-
"name": "
|
|
9239
|
-
"detail": "
|
|
9240
|
-
},
|
|
9241
|
-
"number2": {
|
|
9242
|
-
"name": "number2",
|
|
9243
|
-
"detail": "second"
|
|
9517
|
+
"inumber": {
|
|
9518
|
+
"name": "复数",
|
|
9519
|
+
"detail": "需要计算其自然对数的复数。"
|
|
9244
9520
|
}
|
|
9245
9521
|
}
|
|
9246
9522
|
},
|
|
@@ -9254,13 +9530,9 @@
|
|
|
9254
9530
|
}
|
|
9255
9531
|
],
|
|
9256
9532
|
"functionParameter": {
|
|
9257
|
-
"
|
|
9258
|
-
"name": "
|
|
9259
|
-
"detail": "
|
|
9260
|
-
},
|
|
9261
|
-
"number2": {
|
|
9262
|
-
"name": "number2",
|
|
9263
|
-
"detail": "second"
|
|
9533
|
+
"inumber": {
|
|
9534
|
+
"name": "复数",
|
|
9535
|
+
"detail": "需要计算其常用对数的复数。"
|
|
9264
9536
|
}
|
|
9265
9537
|
}
|
|
9266
9538
|
},
|
|
@@ -9274,13 +9546,9 @@
|
|
|
9274
9546
|
}
|
|
9275
9547
|
],
|
|
9276
9548
|
"functionParameter": {
|
|
9277
|
-
"
|
|
9278
|
-
"name": "
|
|
9279
|
-
"detail": "
|
|
9280
|
-
},
|
|
9281
|
-
"number2": {
|
|
9282
|
-
"name": "number2",
|
|
9283
|
-
"detail": "second"
|
|
9549
|
+
"inumber": {
|
|
9550
|
+
"name": "复数",
|
|
9551
|
+
"detail": "需要计算以 2 为底数的对数的复数。"
|
|
9284
9552
|
}
|
|
9285
9553
|
}
|
|
9286
9554
|
},
|
|
@@ -9294,19 +9562,19 @@
|
|
|
9294
9562
|
}
|
|
9295
9563
|
],
|
|
9296
9564
|
"functionParameter": {
|
|
9297
|
-
"
|
|
9298
|
-
"name": "
|
|
9299
|
-
"detail": "
|
|
9565
|
+
"inumber": {
|
|
9566
|
+
"name": "复数",
|
|
9567
|
+
"detail": "需要计算其幂值的复数。"
|
|
9300
9568
|
},
|
|
9301
|
-
"
|
|
9302
|
-
"name": "
|
|
9303
|
-
"detail": "
|
|
9569
|
+
"number": {
|
|
9570
|
+
"name": "数值",
|
|
9571
|
+
"detail": "需要对复数应用的幂次。"
|
|
9304
9572
|
}
|
|
9305
9573
|
}
|
|
9306
9574
|
},
|
|
9307
9575
|
"IMPRODUCT": {
|
|
9308
|
-
"description": "
|
|
9309
|
-
"abstract": "
|
|
9576
|
+
"description": "返回多个复数的乘积",
|
|
9577
|
+
"abstract": "返回多个复数的乘积",
|
|
9310
9578
|
"links": [
|
|
9311
9579
|
{
|
|
9312
9580
|
"title": "教学",
|
|
@@ -9314,13 +9582,13 @@
|
|
|
9314
9582
|
}
|
|
9315
9583
|
],
|
|
9316
9584
|
"functionParameter": {
|
|
9317
|
-
"
|
|
9318
|
-
"name": "
|
|
9319
|
-
"detail": "
|
|
9585
|
+
"inumber1": {
|
|
9586
|
+
"name": "复数1",
|
|
9587
|
+
"detail": "1 到 255 个要相乘的复数。"
|
|
9320
9588
|
},
|
|
9321
|
-
"
|
|
9322
|
-
"name": "
|
|
9323
|
-
"detail": "
|
|
9589
|
+
"inumber2": {
|
|
9590
|
+
"name": "复数2",
|
|
9591
|
+
"detail": "1 到 255 个要相乘的复数。"
|
|
9324
9592
|
}
|
|
9325
9593
|
}
|
|
9326
9594
|
},
|
|
@@ -9334,19 +9602,15 @@
|
|
|
9334
9602
|
}
|
|
9335
9603
|
],
|
|
9336
9604
|
"functionParameter": {
|
|
9337
|
-
"
|
|
9338
|
-
"name": "
|
|
9339
|
-
"detail": "
|
|
9340
|
-
},
|
|
9341
|
-
"number2": {
|
|
9342
|
-
"name": "number2",
|
|
9343
|
-
"detail": "second"
|
|
9605
|
+
"inumber": {
|
|
9606
|
+
"name": "复数",
|
|
9607
|
+
"detail": "需要计算其实系数的复数。"
|
|
9344
9608
|
}
|
|
9345
9609
|
}
|
|
9346
9610
|
},
|
|
9347
9611
|
"IMSEC": {
|
|
9348
|
-
"description": "
|
|
9349
|
-
"abstract": "
|
|
9612
|
+
"description": "返回复数的正割值",
|
|
9613
|
+
"abstract": "返回复数的正割值",
|
|
9350
9614
|
"links": [
|
|
9351
9615
|
{
|
|
9352
9616
|
"title": "教学",
|
|
@@ -9354,19 +9618,15 @@
|
|
|
9354
9618
|
}
|
|
9355
9619
|
],
|
|
9356
9620
|
"functionParameter": {
|
|
9357
|
-
"
|
|
9358
|
-
"name": "
|
|
9359
|
-
"detail": "
|
|
9360
|
-
},
|
|
9361
|
-
"number2": {
|
|
9362
|
-
"name": "number2",
|
|
9363
|
-
"detail": "second"
|
|
9621
|
+
"inumber": {
|
|
9622
|
+
"name": "复数",
|
|
9623
|
+
"detail": "需要计算其正割值的复数。"
|
|
9364
9624
|
}
|
|
9365
9625
|
}
|
|
9366
9626
|
},
|
|
9367
9627
|
"IMSECH": {
|
|
9368
|
-
"description": "
|
|
9369
|
-
"abstract": "
|
|
9628
|
+
"description": "返回复数的双曲正割值",
|
|
9629
|
+
"abstract": "返回复数的双曲正割值",
|
|
9370
9630
|
"links": [
|
|
9371
9631
|
{
|
|
9372
9632
|
"title": "教学",
|
|
@@ -9374,13 +9634,9 @@
|
|
|
9374
9634
|
}
|
|
9375
9635
|
],
|
|
9376
9636
|
"functionParameter": {
|
|
9377
|
-
"
|
|
9378
|
-
"name": "
|
|
9379
|
-
"detail": "
|
|
9380
|
-
},
|
|
9381
|
-
"number2": {
|
|
9382
|
-
"name": "number2",
|
|
9383
|
-
"detail": "second"
|
|
9637
|
+
"inumber": {
|
|
9638
|
+
"name": "复数",
|
|
9639
|
+
"detail": "需要计算其双曲正割值的复数。"
|
|
9384
9640
|
}
|
|
9385
9641
|
}
|
|
9386
9642
|
},
|
|
@@ -9394,13 +9650,9 @@
|
|
|
9394
9650
|
}
|
|
9395
9651
|
],
|
|
9396
9652
|
"functionParameter": {
|
|
9397
|
-
"
|
|
9398
|
-
"name": "
|
|
9399
|
-
"detail": "
|
|
9400
|
-
},
|
|
9401
|
-
"number2": {
|
|
9402
|
-
"name": "number2",
|
|
9403
|
-
"detail": "second"
|
|
9653
|
+
"inumber": {
|
|
9654
|
+
"name": "复数",
|
|
9655
|
+
"detail": "需要计算其正弦值的复数。"
|
|
9404
9656
|
}
|
|
9405
9657
|
}
|
|
9406
9658
|
},
|
|
@@ -9414,13 +9666,9 @@
|
|
|
9414
9666
|
}
|
|
9415
9667
|
],
|
|
9416
9668
|
"functionParameter": {
|
|
9417
|
-
"
|
|
9418
|
-
"name": "
|
|
9419
|
-
"detail": "
|
|
9420
|
-
},
|
|
9421
|
-
"number2": {
|
|
9422
|
-
"name": "number2",
|
|
9423
|
-
"detail": "second"
|
|
9669
|
+
"inumber": {
|
|
9670
|
+
"name": "复数",
|
|
9671
|
+
"detail": "需要计算其双曲正弦值的复数。"
|
|
9424
9672
|
}
|
|
9425
9673
|
}
|
|
9426
9674
|
},
|
|
@@ -9434,13 +9682,9 @@
|
|
|
9434
9682
|
}
|
|
9435
9683
|
],
|
|
9436
9684
|
"functionParameter": {
|
|
9437
|
-
"
|
|
9438
|
-
"name": "
|
|
9439
|
-
"detail": "
|
|
9440
|
-
},
|
|
9441
|
-
"number2": {
|
|
9442
|
-
"name": "number2",
|
|
9443
|
-
"detail": "second"
|
|
9685
|
+
"inumber": {
|
|
9686
|
+
"name": "复数",
|
|
9687
|
+
"detail": "需要计算其平方根的复数。"
|
|
9444
9688
|
}
|
|
9445
9689
|
}
|
|
9446
9690
|
},
|
|
@@ -9454,13 +9698,13 @@
|
|
|
9454
9698
|
}
|
|
9455
9699
|
],
|
|
9456
9700
|
"functionParameter": {
|
|
9457
|
-
"
|
|
9458
|
-
"name": "
|
|
9459
|
-
"detail": "
|
|
9701
|
+
"inumber1": {
|
|
9702
|
+
"name": "复数1",
|
|
9703
|
+
"detail": "复数1。"
|
|
9460
9704
|
},
|
|
9461
|
-
"
|
|
9462
|
-
"name": "
|
|
9463
|
-
"detail": "
|
|
9705
|
+
"inumber2": {
|
|
9706
|
+
"name": "复数2",
|
|
9707
|
+
"detail": "复数2。"
|
|
9464
9708
|
}
|
|
9465
9709
|
}
|
|
9466
9710
|
},
|
|
@@ -9474,13 +9718,13 @@
|
|
|
9474
9718
|
}
|
|
9475
9719
|
],
|
|
9476
9720
|
"functionParameter": {
|
|
9477
|
-
"
|
|
9478
|
-
"name": "
|
|
9479
|
-
"detail": "
|
|
9721
|
+
"inumber1": {
|
|
9722
|
+
"name": "复数1",
|
|
9723
|
+
"detail": "1 到 255 个要相加的复数。"
|
|
9480
9724
|
},
|
|
9481
|
-
"
|
|
9482
|
-
"name": "
|
|
9483
|
-
"detail": "
|
|
9725
|
+
"inumber2": {
|
|
9726
|
+
"name": "复数2",
|
|
9727
|
+
"detail": "1 到 255 个要相加的复数。"
|
|
9484
9728
|
}
|
|
9485
9729
|
}
|
|
9486
9730
|
},
|
|
@@ -9494,13 +9738,9 @@
|
|
|
9494
9738
|
}
|
|
9495
9739
|
],
|
|
9496
9740
|
"functionParameter": {
|
|
9497
|
-
"
|
|
9498
|
-
"name": "
|
|
9499
|
-
"detail": "
|
|
9500
|
-
},
|
|
9501
|
-
"number2": {
|
|
9502
|
-
"name": "number2",
|
|
9503
|
-
"detail": "second"
|
|
9741
|
+
"inumber": {
|
|
9742
|
+
"name": "复数",
|
|
9743
|
+
"detail": "需要计算其正切值的复数。"
|
|
9504
9744
|
}
|
|
9505
9745
|
}
|
|
9506
9746
|
},
|
|
@@ -10270,13 +10510,17 @@
|
|
|
10270
10510
|
}
|
|
10271
10511
|
],
|
|
10272
10512
|
"functionParameter": {
|
|
10273
|
-
"
|
|
10274
|
-
"name": "
|
|
10275
|
-
"detail": "
|
|
10513
|
+
"number": {
|
|
10514
|
+
"name": "数值",
|
|
10515
|
+
"detail": "要找到其排位的数字。"
|
|
10276
10516
|
},
|
|
10277
|
-
"
|
|
10278
|
-
"name": "
|
|
10279
|
-
"detail": "
|
|
10517
|
+
"ref": {
|
|
10518
|
+
"name": "数字列表",
|
|
10519
|
+
"detail": "对数字列表的引用。Ref 中的非数字值会被忽略。"
|
|
10520
|
+
},
|
|
10521
|
+
"order": {
|
|
10522
|
+
"name": "排位方式",
|
|
10523
|
+
"detail": "一个指定数字排位方式的数字。0 或省略为降序,非 0 为升序。"
|
|
10280
10524
|
}
|
|
10281
10525
|
}
|
|
10282
10526
|
},
|