Recent content by Gueygel
-
G
Mathematica How to Transform a Matrix in Mathematica?
Yes, Outer[Times[]] works for tensor products of matrices. What I use does not need ArrayFlatten...- Gueygel
- Post #7
- Forum: MATLAB, Maple, Mathematica, LaTeX
-
G
Mathematica How to Transform a Matrix in Mathematica?
If A={{1,0,0},{0,0,0},{0,0,0}} B={{a,b,c},{d,e,f},{g,h,i}} then your first matrix is A x B and your second matrix is B x A, where "x" means tensor product. I'm not sure if new versions of Mathematica have the "tensor product" implemented, I already use an old code made by myself for that.- Gueygel
- Post #5
- Forum: MATLAB, Maple, Mathematica, LaTeX
-
G
Mathematica Mathematica issue: Skip a loop step in Table
Thanks Hepth! It wasn't very sophisticated in the end, I really appreciate it :)- Gueygel
- Post #3
- Forum: MATLAB, Maple, Mathematica, LaTeX
-
G
Mathematica Mathematica issue: Skip a loop step in Table
Hi everyone, I have to do a list made of evaluations of a certain function, but if some condition is not satisfied, then I don't want to have the corresponding evaluation in my list. So I tried: Flatten[Table[If[condition,f[i],{}],{i,imin,imax}]] "condition" is true or false depending...- Gueygel
- Thread
- Loop Mathematica Table
- Replies: 2
- Forum: MATLAB, Maple, Mathematica, LaTeX