sc_mult(SAFD)
sc_mult()所属R语言包:SAFD
Minkowski scalar multiplication
闵可夫斯基标量乘法
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Given an input dataframe (polygonal fuzzy number) X in the correct format (tested by checking), and a scalar b the fuzzy number bX is calculated using level-wise Minkowski scalar multiplication.
给定一个输入数据框(多边形模糊数)X在正确的格式(测试checking),和一个标量b模糊数bX计算水平明智的闵可夫斯基标量乘法。
用法----------Usage----------
sc_mult(X, b)
参数----------Arguments----------
参数:X
...dataframe, if checking(X)=1 the product bX is returned, if not, NA is returned.
...数据框,如果检查(X)= 1的产品b X返回,如果不是,NA返回。
参数:b
...numeric
...数字
Details
详细信息----------Details----------
See examples
请参见示例
值----------Value----------
Given correct input data, the function returns the polygonal fuzzy number bX.
正确的输入数据,该函数返回的折线模糊数b“X。
注意----------Note----------
In case you find (almost surely existing) bugs or have recommendations for improving the functions comments are welcome to the above mentioned mail addresses.
如果你发现改善的功能(几乎可以肯定存在的)错误,或有建议意见,欢迎上述电子邮件地址。
(作者)----------Author(s)----------
Wolfgang Trutschnig <wolfgang@trutschnig.net>, Asun Lubiano <lubiano@uniovi.es>
参见----------See Also----------
See Also checking
请参见checking
实例----------Examples----------
data(XX)
X<-translator(XX[[1]],10)
E<-sc_mult(X,-2)
E
U<-data.frame(cbind(x=c(-1,0,1),alpha=c(0,1,0)))
E<-sc_mult(U,2)
E
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|