Hamidreza

191 Reputation

7 Badges

15 years, 193 days

MaplePrimes Activity


These are questions asked by Hamidreza

Hi, I am defining a matrix this way: m := Matrix(2, 3): But I don't want zero value to be assigned by default to its elements, instead I want to have them as just m[i,j] and not zero. Please tell me how I can do that. Thanx,
Hi, I want to construct a general 3 by 3 matrix, but its form is symmetric. How can I do that? As the result maple must consider a[1,2]=a[2,1] in calculations afterwards. Thank you,
Hi, I am developing a code with maple, summing up some elements of a 4th-order matrix like this for i to 3 do for j to 3 do for k to 3 do for l to 3 do S[i, j, k, l] := delta[i, j] + delta[k, l] end do end do end do end do; sum(sum('S[1, 1, k, l]*A[k, l]', 'l' = 1 .. 3), 'k' = 1 .. 3); But after execution, I get this error: Error, (in tools/add) bad index into Matrix "A" and "delta" are 3 by 3 matrices. Please help me come up with a solution. Thanx,
1 2 3 4 5 Page 5 of 5