Partager via


ScriptIntrinsicBLAS.DTRMM Méthode

Définition

DTRMM effectue l’une des opérations matrice-matrice B := alphaop(A)B ou B := alphaBop(A) op(A) op(A) est l’un des op(A) = A ou op(A) = A**T

[Android.Runtime.Register("DTRMM", "(IIIIDLandroid/renderscript/Allocation;Landroid/renderscript/Allocation;)V", "", ApiSince=23)]
public void DTRMM (int Side, int Uplo, int TransA, int Diag, double alpha, Android.Renderscripts.Allocation? A, Android.Renderscripts.Allocation? B);
[<Android.Runtime.Register("DTRMM", "(IIIIDLandroid/renderscript/Allocation;Landroid/renderscript/Allocation;)V", "", ApiSince=23)>]
member this.DTRMM : int * int * int * int * double * Android.Renderscripts.Allocation * Android.Renderscripts.Allocation -> unit

Paramètres

Side
Int32

Spécifie si la matrice symétrique A apparaît à gauche ou à droite.

Uplo
Int32

Spécifie si la matrice A est triangulaire supérieure ou inférieure.

TransA
Int32

Type de transposer appliqué à la matrice A.

Diag
Int32

Spécifie si A est ou non une unité triangulaire.

alpha
Double

Alpha scalaire.

A
Allocation

L’allocation d’entrée contient la matrice A, type Element#F64d’éléments pris en charge.

B
Allocation

L’allocation d’entrée contient la matrice B, type Element#F64d’éléments pris en charge.

Attributs

Remarques

DTRMM effectue l’une des opérations matrice-matrice B := alpha*op(A)*B ou B := alpha*B*op(A) op(A) est l’un des op(A) = A ou op(A) = A**T

Détails : http://www.netlib.org/lapack/explore-html/dd/d19/dtrmm_8f.html

Documentation Java pour android.renderscript.ScriptIntrinsicBLAS.DTRMM(int, int, int, int, double, android.renderscript.Allocation, android.renderscript.Allocation).

Les parties de cette page sont des modifications basées sur le travail créé et partagé par le projet Android Open Source et utilisés en fonction des termes décrits dans la licence d’attribution Creative Commons 2.5.

S’applique à