Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

clag2z(3) [centos man page]

clag2z.f(3)							      LAPACK							       clag2z.f(3)

NAME
clag2z.f - SYNOPSIS
Functions/Subroutines subroutine clag2z (M, N, SA, LDSA, A, LDA, INFO) CLAG2Z converts a complex single precision matrix to a complex double precision matrix. Function/Subroutine Documentation subroutine clag2z (integerM, integerN, complex, dimension( ldsa, * )SA, integerLDSA, complex*16, dimension( lda, * )A, integerLDA, integerINFO) CLAG2Z converts a complex single precision matrix to a complex double precision matrix. Purpose: CLAG2Z converts a COMPLEX matrix, SA, to a COMPLEX*16 matrix, A. Note that while it is possible to overflow while converting from double to single, it is not possible to overflow when converting from single to double. This is an auxiliary routine so there is no argument checking. Parameters: M M is INTEGER The number of lines of the matrix A. M >= 0. N N is INTEGER The number of columns of the matrix A. N >= 0. SA SA is COMPLEX array, dimension (LDSA,N) On entry, the M-by-N coefficient matrix SA. LDSA LDSA is INTEGER The leading dimension of the array SA. LDSA >= max(1,M). A A is COMPLEX*16 array, dimension (LDA,N) On exit, the M-by-N coefficient matrix A. LDA LDA is INTEGER The leading dimension of the array A. LDA >= max(1,M). INFO INFO is INTEGER = 0: successful exit Author: Univ. of Tennessee Univ. of California Berkeley Univ. of Colorado Denver NAG Ltd. Date: September 2012 Definition at line 104 of file clag2z.f. Author Generated automatically by Doxygen for LAPACK from the source code. Version 3.4.2 Tue Sep 25 2012 clag2z.f(3)

Check Out this Related Man Page

clag2z.f(3)							      LAPACK							       clag2z.f(3)

NAME
clag2z.f - SYNOPSIS
Functions/Subroutines subroutine clag2z (M, N, SA, LDSA, A, LDA, INFO) CLAG2Z Function/Subroutine Documentation subroutine clag2z (integerM, integerN, complex, dimension( ldsa, * )SA, integerLDSA, complex*16, dimension( lda, * )A, integerLDA, integerINFO) CLAG2Z Purpose: CLAG2Z converts a COMPLEX matrix, SA, to a COMPLEX*16 matrix, A. Note that while it is possible to overflow while converting from double to single, it is not possible to overflow when converting from single to double. This is an auxiliary routine so there is no argument checking. Parameters: M M is INTEGER The number of lines of the matrix A. M >= 0. N N is INTEGER The number of columns of the matrix A. N >= 0. SA SA is COMPLEX array, dimension (LDSA,N) On entry, the M-by-N coefficient matrix SA. LDSA LDSA is INTEGER The leading dimension of the array SA. LDSA >= max(1,M). A A is COMPLEX*16 array, dimension (LDA,N) On exit, the M-by-N coefficient matrix A. LDA LDA is INTEGER The leading dimension of the array A. LDA >= max(1,M). INFO INFO is INTEGER = 0: successful exit Author: Univ. of Tennessee Univ. of California Berkeley Univ. of Colorado Denver NAG Ltd. Date: November 2011 Definition at line 104 of file clag2z.f. Author Generated automatically by Doxygen for LAPACK from the source code. Version 3.4.1 Sun May 26 2013 clag2z.f(3)
Man Page

7 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Select columns from a matrix given within a range in BASH

I have a huge matrix file which looks like this (example matrix): 1 2 3 5 4 5 6 7 7 6 8 9 1 2 4 2 7 6 5 1 3 2 1 9 As one can see, this matrix has 4 columns and 6 rows. But my original matrix has some 3 million rows and 6000 columns. For example, on this matrix I can define my task as... (2 Replies)
Discussion started by: shoaibjameel123
2 Replies

2. Shell Programming and Scripting

Summing up a matrix using awk

Hi there, If anyone can help me sorting out this small task would be great. Given a matrix like the following: 100 3 3 3 3 3 ... 200 5 5 5 5 5 ... 400 1 1 1 1 1 ... 500 8 8 8 8 8 ... 900 0 0 0 0... (5 Replies)
Discussion started by: JRodrigoF
5 Replies

3. Shell Programming and Scripting

Merge multiple tables into big matrix

Hi all, I have a complex (beyond my biological expertise) problem at hand. I need to merge multiple files into 1 big matrix. Please help me with some code. Inp1 Ang_0 chr1 98 T A Ang_0 chr1 352 G A Ang_0 chr1 425 C T Ang_0 chr2 ... (1 Reply)
Discussion started by: newbie83
1 Replies

4. Shell Programming and Scripting

Randomize a matrix

--please have a look at my third post in this thread! there I explained it more clearly-- Hey guys. I posted a complex problem few days back. No reply! :| Here is simplified question: I have a matrix with 0/1: * col1 col2 col3 row1 1 0 1 row2 0 0 ... (5 Replies)
Discussion started by: @man
5 Replies

5. Shell Programming and Scripting

awk to log transform on matrix file

Hi Friends, I have an input matrix file like this Col1 Col2 Col3 Col4 R1 1 2 3 4 R2 4 5 6 7 R3 5 6 7 8 I would like to consider only the numeric values without touching the column header and the row header. I looked up on the forum's search, and I found this. But, I donno how to... (3 Replies)
Discussion started by: jacobs.smith
3 Replies

6. Shell Programming and Scripting

Square matrix to columns

Hello all, I am quite new in this but I need some help to keep going with my analysis. I am struggling with a short script to read a square matrix and convert it in two collumns. A B C D A 0.00 0.06 0.51 0.03 B 0.06 0.00 0.72 0.48 C 0.51 0.72 0.00 ... (7 Replies)
Discussion started by: EvaAM
7 Replies

7. Shell Programming and Scripting

Highest value matrix parsing

Hi All I do have a matrix in the following format a_2 a_3 s_4 t_6 b 0 0.9 0.004 0 c 0 0 1 0 d 0 0.98 0 0 e 0.0023 0.96 0 0.0034 I have thousands of rows I would like to parse the maximum value in each of the row and out put that highest value along the column header of... (2 Replies)
Discussion started by: Kanja
2 Replies