ScriptIntrinsicBLAS.DGBMV 메서드
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
DGBMV는 행렬 벡터 작업 y := alphaAx + 베타y 또는 y := alphaA**Tx + 베타y 중 하나를 수행합니다.
[Android.Runtime.Register("DGBMV", "(IIIDLandroid/renderscript/Allocation;Landroid/renderscript/Allocation;IDLandroid/renderscript/Allocation;I)V", "", ApiSince=23)]
public void DGBMV (int TransA, int KL, int KU, double alpha, Android.Renderscripts.Allocation? A, Android.Renderscripts.Allocation? X, int incX, double beta, Android.Renderscripts.Allocation? Y, int incY);
[<Android.Runtime.Register("DGBMV", "(IIIDLandroid/renderscript/Allocation;Landroid/renderscript/Allocation;IDLandroid/renderscript/Allocation;I)V", "", ApiSince=23)>]
member this.DGBMV : int * int * int * double * Android.Renderscripts.Allocation * Android.Renderscripts.Allocation * int * double * Android.Renderscripts.Allocation * int -> unit
매개 변수
- TransA
- Int32
행렬 A에 적용되는 트랜스포지션의 형식입니다.
- KL
- Int32
행렬 A의 하위 대각선 수입니다.
- KU
- Int32
행렬 A의 대각선 수입니다.
- alpha
- Double
스칼라 알파입니다.
입력 할당에는 대역 행렬 A, 지원되는 요소 형식 Element#F64
이 포함됩니다.
입력 할당에는 벡터 x, 지원되는 요소 형식 Element#F64
이 포함됩니다.
- incX
- Int32
벡터 x의 요소에 대한 증분은 0보다 커야 합니다.
- beta
- Double
스칼라 베타입니다.
입력 할당에는 벡터 y, 지원되는 요소 형식 Element#F64
이 포함됩니다.
- incY
- Int32
벡터 y의 요소에 대한 증분은 0보다 커야 합니다.
- 특성
설명
DGBMV는 행렬 벡터 작업 y := alpha*A*x + beta*y 또는 y := alpha*A**T*x + beta*y 중 하나를 수행합니다.
세부 정보: http://www.netlib.org/lapack/explore-html/d2/d3f/dgbmv_8f.html
참고: M*N 행렬의 경우 입력 할당 크기도 M*N(dimY = M, dimX = N)이어야 하지만 M*(KL+KU+1) 지역만 참조됩니다. 다음 서브루틴은 원래 행렬 'a'를 행 기반 대역 행렬 'b'로 변환하는 방법을 보여 주는 예제입니다. for i in range(0, m): j in range(max(0, i-kl), min(i+ku+1, n)): b[i, j-i+kl] = a[i, j]
이 페이지의 일부는 Android 오픈 소스 프로젝트에서 만들고 공유하고 Creative Commons 2.5 특성 라이선스에 설명된 용어에 따라 사용되는 작업을 기반으로 하는 수정 사항입니다.