Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

slag2d(3) [centos man page]

slag2d.f(3)							      LAPACK							       slag2d.f(3)

NAME
slag2d.f - SYNOPSIS
Functions/Subroutines subroutine slag2d (M, N, SA, LDSA, A, LDA, INFO) SLAG2D converts a single precision matrix to a double precision matrix. Function/Subroutine Documentation subroutine slag2d (integerM, integerN, real, dimension( ldsa, * )SA, integerLDSA, double precision, dimension( lda, * )A, integerLDA, integerINFO) SLAG2D converts a single precision matrix to a double precision matrix. Purpose: SLAG2D converts a SINGLE PRECISION matrix, SA, to a DOUBLE PRECISION 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 REAL 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 DOUBLE PRECISION 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 105 of file slag2d.f. Author Generated automatically by Doxygen for LAPACK from the source code. Version 3.4.2 Tue Sep 25 2012 slag2d.f(3)

Check Out this Related Man Page

slag2d.f(3)							      LAPACK							       slag2d.f(3)

NAME
slag2d.f - SYNOPSIS
Functions/Subroutines subroutine slag2d (M, N, SA, LDSA, A, LDA, INFO) SLAG2D converts a single precision matrix to a double precision matrix. Function/Subroutine Documentation subroutine slag2d (integerM, integerN, real, dimension( ldsa, * )SA, integerLDSA, double precision, dimension( lda, * )A, integerLDA, integerINFO) SLAG2D converts a single precision matrix to a double precision matrix. Purpose: SLAG2D converts a SINGLE PRECISION matrix, SA, to a DOUBLE PRECISION 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 REAL 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 DOUBLE PRECISION 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 105 of file slag2d.f. Author Generated automatically by Doxygen for LAPACK from the source code. Version 3.4.2 Tue Sep 25 2012 slag2d.f(3)
Man Page

5 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

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

4. 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

5. 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