From: Rado on 9 Aug 2010 09:08 Hello everyone, I am novice-level Matlab user. I have the following question: Can I visualize (or input), for example the input of a matrix as a normal hand-written matrix notation? What I mean is... - here we have a matrix input of M in Matlab: M=[a11 a12 a13; a21 a22 a23; a31 a32 a33] - can I visualize (on the screen) or input this matrix as follows? |a11 a12 a13| M=|a21 a22 a23| |a31 a32 a33| I know there are some keyboard combinations in Wolfram Mathematica that allow this. I have also worked with MathCAD and the input there can be done this way directly (see the link below). Here is an example of what I mean: http://upload.wikimedia.org/wikipedia/de/6/6f/MathCad_Matrix.png Thanks in advance!
From: Sean on 9 Aug 2010 09:23 "Rado " <radi8600(a)gmail.com.remove.this> wrote in message <i3oujm$5km$1(a)fred.mathworks.com>... > Hello everyone, > > I am novice-level Matlab user. > > I have the following question: > Can I visualize (or input), for example the input of a matrix as a normal hand-written matrix notation? > > What I mean is... > - here we have a matrix input of M in Matlab: > M=[a11 a12 a13; a21 a22 a23; a31 a32 a33] > - can I visualize (on the screen) or input this matrix as follows? > |a11 a12 a13| > M=|a21 a22 a23| > |a31 a32 a33| > > I know there are some keyboard combinations in Wolfram Mathematica that allow this. I have also worked with MathCAD and the input there can be done this way directly (see the link below). > Here is an example of what I mean: > http://upload.wikimedia.org/wikipedia/de/6/6f/MathCad_Matrix.png > > Thanks in advance! M = ['a1 ','a2 ','a3 ';'b1 ','b2 ','b3 ']; disp(M);
|
Pages: 1 Prev: Retrieving image from webcam (very slow) Next: pop up menu gui |