Dear all,
I want to solve Ax=b for A. i.e. x and b are known vectors A is unknown matrix. Please can anybody let me know how to find the matrix A by proc iml..
Thank you in advanced.
Did you mis-state the problem? Usually A and b are known and you need to find x.
As you've stated it, the problem has infinitely many solutions when x is not identically zero.
Since x is not all zeros, there is some element x_i which is nonzero. Construct the matrix A that is zero everywhere except for the i_th column, where it has the value b/x_i.
For example:
proc iml;
x = T(4:0);
b = T(1:3);
i=1; /* for this problem x[1] is nonzero */
A = j(nrow(b), nrow(x), 0);
A[,i] = b/x;
diff = A*x-b; /* compute A*x - b */
print diff;
April 27 – 30 | Gaylord Texan | Grapevine, Texas
Walk in ready to learn. Walk out ready to deliver. This is the data and AI conference you can't afford to miss.
Register now and save with the early bird rate—just $795!
Learn how use the CAT functions in SAS to join values from multiple variables into a single value.
Find more tutorials on the SAS Users YouTube channel.
Ready to level-up your skills? Choose your own adventure.