09-01-2015
freeliu
Calcite | Level 5
Member since
01-30-2015
- 4 Posts
- 0 Likes Given
- 0 Solutions
- 0 Likes Received
-
Latest posts by freeliu
Subject Views Posted 2072 02-04-2015 10:24 AM 2166 02-02-2015 10:11 AM 4297 02-02-2015 04:49 AM 4297 02-02-2015 03:44 AM -
Activity Feed for freeliu
- Posted Re: matrix Product by IML on SAS/IML Software and Matrix Computations. 02-04-2015 10:24 AM
- Posted matrix Product by IML on SAS/IML Software and Matrix Computations. 02-02-2015 10:11 AM
- Posted Re: computing a similarity matrix on SAS/IML Software and Matrix Computations. 02-02-2015 04:49 AM
- Posted Re: computing a similarity matrix on SAS/IML Software and Matrix Computations. 02-02-2015 03:44 AM
02-04-2015
10:24 AM
Thanks for your help.
... View more
02-02-2015
10:11 AM
data a; input investor $ y; cards; fdcd1 0.006157039 fdcd2 0.001510721 fdcd3 0.35458659 fdcd4 -0.04071315 fdcd5 -0.01494467 fdcd6 -0.009 run; The matrix is like this( Note: the colname of matrix is a mess of vector. Their orders are different). How to give their Product? Thanks! fdcd1 fdcd3 fdcd2 fdcd5 fdcd4 fdcd6 0.79 0.01 1.09 3.75 0.82 0.43 1.4 0.23 0.86 0.88 1.44 1.19 0 0 0 0 0 0 0 0.09 0 0 0 0.02 0.33 0 0 0 0.33 0.29 0.28 0 0 0 0.27 0.42 0 0 0 0 0 0 0 0 0 0 0 0.04 0 0 0 0 0 0 0.14 0.19 0 0 0.14 0.1 0 0 0 0 0 0 0.19 0 0 0 0.19 0.17 0 0 0 0 0 0 0.12 0.1 0 0 0.12 0.15 0 0 0 0 0 0.06 0 0 0 0 0 0 0.1 0 0 0 0.1 0.09
... View more
02-02-2015
04:49 AM
Hi, here is the example; The Vector if following NAME y fdcd_000001 0.006157039 fdcd_000011 0.001510721 fdcd_000021 0.35458659 fdcd_000031 -0.04071315 fdcd_000041 -0.01494467 fdcd_000051 0 The matrix is( Note: the colname of matrix is a mess of vector. Their orders are different). How to give their Product? Thanks! fdcd_000011 fdcd_000001 fdcd_000021 fdcd_000031 fdcd_000041 fdcd_000051 0.79 0.01 1.09 3.75 0.82 0.43 1.4 0.23 0.86 0.88 1.44 1.19 0 0 0 0 0 0 0 0.09 0 0 0 0.02 0.33 0 0 0 0.33 0.29 0.28 0 0 0 0.27 0.42 0 0 0 0 0 0 0 0 0 0 0 0.04 0 0 0 0 0 0 0.14 0.19 0 0 0.14 0.1 0 0 0 0 0 0 0.19 0 0 0 0.19 0.17 0 0 0 0 0 0 0.12 0.1 0 0 0.12 0.15 0 0 0 0 0 0.06 0 0 0 0 0 0 0.1 0 0 0 0.1 0.09
... View more
02-02-2015
03:44 AM
Here is a new question. After similarity matrix was gotten, such as Matrix m in this example. How could I output it and reuse this similarity matrix to calculate other vecor? For example data temp; input investor $ flow; cards; A 0.1 B 0.4 C -0.8 D 0.11 E 0.12 F 0.13 ; run; I just want to calculate a new variable m*flow. Would please give me help ? Thanks!
... View more