다음을 통해 공유


ScriptIntrinsicBLAS.ZHPMV 메서드

정의

ZHPMV는 행렬 벡터 연산 y := alphaAx + beta*y를 수행합니다.

[Android.Runtime.Register("ZHPMV", "(ILandroid/renderscript/Double2;Landroid/renderscript/Allocation;Landroid/renderscript/Allocation;ILandroid/renderscript/Double2;Landroid/renderscript/Allocation;I)V", "", ApiSince=23)]
public void ZHPMV (int Uplo, Android.Renderscripts.Double2? alpha, Android.Renderscripts.Allocation? Ap, Android.Renderscripts.Allocation? X, int incX, Android.Renderscripts.Double2? beta, Android.Renderscripts.Allocation? Y, int incY);
[<Android.Runtime.Register("ZHPMV", "(ILandroid/renderscript/Double2;Landroid/renderscript/Allocation;Landroid/renderscript/Allocation;ILandroid/renderscript/Double2;Landroid/renderscript/Allocation;I)V", "", ApiSince=23)>]
member this.ZHPMV : int * Android.Renderscripts.Double2 * Android.Renderscripts.Allocation * Android.Renderscripts.Allocation * int * Android.Renderscripts.Double2 * Android.Renderscripts.Allocation * int -> unit

매개 변수

Uplo
Int32

행렬 A의 위쪽 또는 아래쪽 삼각형 부분을 압축된 형식으로 제공할지 여부를 지정합니다.

alpha
Double2

스칼라 알파입니다.

Ap
Allocation

입력 할당에는 매트릭스 A, 지원되는 요소 형식 Element#F64_2이 포함됩니다.

X
Allocation

입력 할당에는 벡터 x, 지원되는 요소 형식 Element#F64_2이 포함됩니다.

incX
Int32

벡터 x의 요소에 대한 증분은 0보다 커야 합니다.

beta
Double2

스칼라 베타입니다.

Y
Allocation

입력 할당에는 벡터 y, 지원되는 요소 형식 Element#F64_2이 포함됩니다.

incY
Int32

벡터 y의 요소에 대한 증분은 0보다 커야 합니다.

특성

설명

ZHPMV는 matrix-vector 연산 y := alpha*A*x + beta*y를 수행합니다.

세부 정보: http://www.netlib.org/lapack/explore-html/d0/d60/zhpmv_8f.html

참고: N*N 행렬의 경우 입력 할당은 dimX = N*(N+1)/2 크기의 1D 할당이어야 합니다. 다음 서브루틴은 UPPER 삼각 행렬 'a'를 압축된 행렬 'b'로 변환하는 방법을 보여 주는 예제입니다. k = 0 for i in range(0, n): j in range(i, n): b[k++] = a[i, j]

에 대한 android.renderscript.ScriptIntrinsicBLAS.ZHPMV(int, android.renderscript.Double2, android.renderscript.Allocation, android.renderscript.Allocation, int, android.renderscript.Double2, android.renderscript.Allocation, int)Java 설명서

이 페이지의 일부는 Android 오픈 소스 프로젝트에서 만들고 공유하고 Creative Commons 2.5 특성 라이선스에 설명된 용어에 따라 사용되는 작업을 기반으로 하는 수정 사항입니다.

적용 대상