I have problem with for loop in Mathematica given in the notebook attached.
It evaluates only first step and then shows problems and the kernel could not stop running.
What could be the problem? What is the correct syntax?
says that the second argument to LinearSolve can either be a vector or a matrix. The examples show using a vector.
It appears that your trying to give an approximation of a column vector, by adding an extra {} around each element, is the source of your problem.
In your previous post I removed all those extra {} and got it to run. Now with your new post and the extra {} introduced again it fails. Flatten[] eliminates the inner {} and gets the code to run.
If you put
Print[f]; Print[g]; Print[p, i];
in place of your
Print[p, i];
and you do not use the Flatten[] described above then you can see in the first few iterations that each iteration adds another layer of {} and those additional layers result in tensors that finally blow up LinearSolve.