What Does A([i j],:) = J*A([i j],:); Mean in MatLab?
Title pretty much describes it all. I have no familiarity with MatLab and I'm translating an algorithm into Java. A and J are matrices and i and j are integers. I already have a Matrix class in Java that can handle most matrix operations, I...