q function

버전 1.3.0.0 (1 KB) 작성자: Hassan Moradi
A function for computation of q-function for scalar and vector inputs
다운로드 수: 546
업데이트 2010/9/17

라이선스 보기

If you have any problem with finding q-function in your Matlab version, just add this function to your library to be able to handle q-function in your programing. It's a simple m-code file accepting both scalar and vector as input.

How to use it
usage is very easy and straight forward. Just download the file and save it to the same folder as your file is. Then by calling function q(x), where x is the integral limit, you can get the value of q function.

Example 1
>> q(.1)

ans =

0.4602

Example 2
>> q(5.3)

ans =

5.7901e-008

Example 3
>> vec=[1 -2 0.001 5.3 -1.04];
>> qfunc(vec)

ans =

0.1587 0.9772 0.4996 5.790e-008 0.8508

인용 양식

Hassan Moradi (2026). q function (https://kr.mathworks.com/matlabcentral/fileexchange/28620-q-function), MATLAB Central File Exchange. 검색 날짜: .

MATLAB 릴리스 호환 정보
개발 환경: R2009b
모든 릴리스와 호환
플랫폼 호환성
Windows macOS Linux
카테고리
Help CenterMATLAB Answers에서 Third-Party Cluster Configuration에 대해 자세히 알아보기
버전 게시됨 릴리스 정보
1.3.0.0

Putting some comments and examples.

1.1.0.0

Description changed.

1.0.0.0