爱气象,爱气象家园! 

气象家园

 找回密码
 立即注册

QQ登录

只需一步,快速开始

新浪微博登陆

只需一步, 快速开始

分享 matlab中的不完全伽马函数gammainc
kongfeng0824 2013-11-25 16:58
Y = gammainc(X,A) Y = gammainc(X,A,tail) Y = gammainc(X,A,'scaledlower') Y= gammainc(X,A,'scaledupper')
个人分类: Matlab Study|652 次阅读|0 个评论
分享 matlab中的伽马函数gamma
kongfeng0824 2013-11-25 16:56
Y = gamma(X) The gamma function interpolates the factorial function.For integer n: gamma(n+1) = n! = prod(1:n)
个人分类: Matlab Study|1481 次阅读|0 个评论
分享 matlab中的矩阵开放函数sqrtm
kongfeng0824 2013-11-25 16:52
X = sqrtm(A) is the principalsquare root of the matrix A, i.e. X*X= A.
个人分类: Matlab Study|785 次阅读|0 个评论
分享 matlab中的平方根函数sqrt
kongfeng0824 2013-11-25 16:46
B = sqrt(X) returns thesquare root of each element of the array X. Forthe elements of X that are negative or complex, sqrt(X) producescomplex results.
个人分类: Matlab Study|545 次阅读|0 个评论
分享 matlab中的n次方根函数nthroot
kongfeng0824 2013-11-25 16:45
y = nthroot(X, n) returnsthe real nth root of the elements of X.Both X and n must be real and n mustbe a scalar. If X has negative entries, n mustbe an odd integer.
个人分类: Matlab Study|1033 次阅读|0 个评论
分享 matlab中的乘方函数power
kongfeng0824 2013-11-25 16:43
C = power(A,B) is called for the syntax 'A.^ B' when A or B isan object.
个人分类: Matlab Study|2713 次阅读|0 个评论
分享 matlab中的连乘函数prod
kongfeng0824 2013-11-25 16:41
B = prod(A) B = prod(A,dim) B = prod(___,datatype)
个人分类: Matlab Study|517 次阅读|0 个评论
分享 matlab中的累积连乘函数cumprod
kongfeng0824 2013-11-25 16:40
B = cumprod(A) B = cumprod(A,dim) A = ; B = cumprod(A) B = 1 2 6 24 120
个人分类: Matlab Study|1003 次阅读|0 个评论
分享 matlab中的累积和函数cumsum
kongfeng0824 2013-11-25 16:36
B = cumsum(A) B = cumsum(A,dim) B = cumsum(A) B = cumsum(A,dim) B = 1 3 6 10 15
个人分类: Matlab Study|754 次阅读|0 个评论
分享 matlab中的前后项差函数diff
kongfeng0824 2013-11-25 16:32
Syntax Y = diff(X) Y = diff(X,n) Y = diff(X,n,dim) Examples The quantity diff(y)./diff(x) is an approximatederivative. x = ; y = diff(x) y = 1 1 1 1 z = diff(x,2) z = 0 0 &n ...
个人分类: Matlab Study|356 次阅读|0 个评论

Copyright ©2011-2014 bbs.06climate.com All Rights Reserved.  Powered by Discuz! (京ICP-10201084)

本站信息均由会员发表,不代表气象家园立场,禁止在本站发表与国家法律相抵触言论

返回顶部