Hello, I would like to multiply two datasets A and B that has equal dimensions T X N which can both can be a large number. - N can be very large (as of 100.000 randomized numbers). The first variable name is equation which is the only variable. Variable name 2:N has numerical name and its not necessarily 1 to 100.000 - it could be 2, 10, 200,... so on. - Both datasets are similarly structured. They have the same ordering of variable names and observations. - I am currently using SAS 9.4. An example of the two datasets is: DATASET A Variable names Equation 2 10 1 0 20 2 10 1 3 2 5 Dataset B Variable names Equation 2 10 1 0 1 2 1 0 3 0 1 And i wish to get a dataset that has multiplied by elements: Dataset want Variable names Equation 2 10 1 0 20 2 10 0 3 0 5 Thank you for your time.
... View more