matlab里如何表示一个函数的反函数,如表示Q函数的反函数?在matlab:function [y]=Qfunc(x)[y]=1/2*erfc(x/sqrt(2))那如何表示Qfunc的反函数?

来源:学生作业帮助网 编辑:作业帮 时间:2024/05/15 09:34:23

matlab里如何表示一个函数的反函数,如表示Q函数的反函数?在matlab:function [y]=Qfunc(x)[y]=1/2*erfc(x/sqrt(2))那如何表示Qfunc的反函数?
matlab里如何表示一个函数的反函数,如表示Q函数的反函数?
在matlab:
function [y]=Qfunc(x)
[y]=1/2*erfc(x/sqrt(2))
那如何表示Qfunc的反函数?

matlab里如何表示一个函数的反函数,如表示Q函数的反函数?在matlab:function [y]=Qfunc(x)[y]=1/2*erfc(x/sqrt(2))那如何表示Qfunc的反函数?
FINV Inverse of the F cumulative distribution function.
X=FINV(P,V1,V2) returns the inverse of the F distribution
function with V1 and V2 degrees of freedom, at the values in P.

The size of X is the common size of the input arguments. A scalar input
functions as a constant matrix of the same size as the other inputs.

FINV Inverse of the F cumulative distribution function.
X=FINV(P,V1,V2) returns the inverse of the F distribution
function with V1 and V2 degrees of freedom, at the values in P.
The siz...

全部展开

FINV Inverse of the F cumulative distribution function.
X=FINV(P,V1,V2) returns the inverse of the F distribution
function with V1 and V2 degrees of freedom, at the values in P.
The size of X is the common size of the input arguments. A scalar input
functions as a constant matrix of the same size as the other inputs.
回答者:matlabfunc - 秀才 三级 11-2 21:24

收起

反函数就是符号求解原来的函数就可以了。