From: Robin on 10 Dec 2009 05:27 Hello, i try to create a n-D-Lookup table (3x3x2), but i don?t know how to write the "Table data". "row": [1,2,3] "column":[4,5,6] "third input": [7,8] and the "table data"? I try the following: [0 0 0; 0 0 0; 0 0 0], [0 0 0; 0 0 0; 0 0 0], but the matlab error: "Unbalanced or unexpected parenthesis or bracket" appeared. Would be nice if anyone could help me! THX
From: kinor on 10 Dec 2009 08:45 "Robin " <robin.de.silva(a)iav.de> wrote in message <hfqido$fg2$1(a)fred.mathworks.com>... > Hello, > > i try to create a n-D-Lookup table (3x3x2), but i don?t know how to write the "Table data". > > "row": [1,2,3] > "column":[4,5,6] > "third input": [7,8] > > and the "table data"? > I try the following: [0 0 0; 0 0 0; 0 0 0], [0 0 0; 0 0 0; 0 0 0], but the matlab error: "Unbalanced or unexpected parenthesis or bracket" appeared. > > Would be nice if anyone could help me! > > THX Hi Robin, you did not post the whole assignment, the one above works and is useless because for every position you get the value 0. you can set up the lut slice by slice and then combine alle slices with the cat command. hth kinor
From: Robin on 10 Dec 2009 09:45 "kinor " <kinor.removethiswithdot(a)gmx.de> wrote in message <hfqu15$orh$1(a)fred.mathworks.com>... > "Robin " <robin.de.silva(a)iav.de> wrote in message <hfqido$fg2$1(a)fred.mathworks.com>... > > Hello, > > > > i try to create a n-D-Lookup table (3x3x2), but i don?t know how to write the "Table data". > > > > "row": [1,2,3] > > "column":[4,5,6] > > "third input": [7,8] > > > > and the "table data"? > > I try the following: [0 0 0; 0 0 0; 0 0 0], [0 0 0; 0 0 0; 0 0 0], but the matlab error: "Unbalanced or unexpected parenthesis or bracket" appeared. > > > > Would be nice if anyone could help me! > > > > THX > > Hi Robin, > > you did not post the whole assignment, the one above works and is useless because for every position you get the value 0. > > you can set up the lut slice by slice and then combine alle slices with the cat command. > > hth > kinor Hello Kinor! THX for the fast reply! I`ve tried several table data contents like [1 2 3; 4 5 6; 7 8 9], [10 11 12; 13 14 15; 16 17 18], but always an error appeared. Maybe i`ve made some syntax error? How would youcreate a table data in a 3x3x2-Lookup table? THX Robin
From: Robin on 10 Dec 2009 09:54 "Robin " <robin.de.silva(a)iav.de> wrote in message <hfr1ho$g38$1(a)fred.mathworks.com>... > "kinor " <kinor.removethiswithdot(a)gmx.de> wrote in message <hfqu15$orh$1(a)fred.mathworks.com>... > > "Robin " <robin.de.silva(a)iav.de> wrote in message <hfqido$fg2$1(a)fred.mathworks.com>... > > > Hello, > > > > > > i try to create a n-D-Lookup table (3x3x2), but i don?t know how to write the "Table data". > > > > > > "row": [1,2,3] > > > "column":[4,5,6] > > > "third input": [7,8] > > > > > > and the "table data"? > > > I try the following: [0 0 0; 0 0 0; 0 0 0], [0 0 0; 0 0 0; 0 0 0], but the matlab error: "Unbalanced or unexpected parenthesis or bracket" appeared. > > > > > > Would be nice if anyone could help me! > > > > > > THX > > > > Hi Robin, > > > > you did not post the whole assignment, the one above works and is useless because for every position you get the value 0. > > > > you can set up the lut slice by slice and then combine alle slices with the cat command. > > > > hth > > kinor > > Hello Kinor! > > THX for the fast reply! > I`ve tried several table data contents like > [1 2 3; 4 5 6; 7 8 9], [10 11 12; 13 14 15; 16 17 18], > > but always an error appeared. > > Maybe i`ve made some syntax error? How would youcreate a table data in a 3x3x2-Lookup table? > > THX > > Robin i?ve try the cat command, but i don?t know how to create this in simulink.
From: Steven Lord on 10 Dec 2009 10:42
"Robin " <robin.de.silva(a)iav.de> wrote in message news:hfr1ho$g38$1(a)fred.mathworks.com... > "kinor " <kinor.removethiswithdot(a)gmx.de> wrote in message > <hfqu15$orh$1(a)fred.mathworks.com>... >> "Robin " <robin.de.silva(a)iav.de> wrote in message >> <hfqido$fg2$1(a)fred.mathworks.com>... >> > Hello, >> > >> > i try to create a n-D-Lookup table (3x3x2), but i don?t know how to >> > write the "Table data". >> > >> > "row": [1,2,3] >> > "column":[4,5,6] >> > "third input": [7,8] >> > >> > and the "table data"? >> > I try the following: [0 0 0; 0 0 0; 0 0 0], [0 0 0; 0 0 0; 0 0 0], but >> > the matlab error: "Unbalanced or unexpected parenthesis or bracket" >> > appeared. >> > >> > Would be nice if anyone could help me! >> > >> > THX >> >> Hi Robin, >> >> you did not post the whole assignment, the one above works and is useless >> because for every position you get the value 0. >> >> you can set up the lut slice by slice and then combine alle slices with >> the cat command. >> >> hth >> kinor > > Hello Kinor! > > THX for the fast reply! > I`ve tried several table data contents like > [1 2 3; 4 5 6; 7 8 9], [10 11 12; 13 14 15; 16 17 18], > > but always an error appeared. > > Maybe i`ve made some syntax error? How would youcreate a table data in a > 3x3x2-Lookup table? You can enter a MATLAB expression in that parameter's entry box. cat(3, [1 2 3;4 5 6;7 8 9], [10 11 12; 13 14 15; 16 17 18]) Or I believe you could create an N-D array in MATLAB and specify the name of that variable in that entry box. -- Steve Lord slord(a)mathworks.com comp.soft-sys.matlab (CSSM) FAQ: http://matlabwiki.mathworks.com/MATLAB_FAQ |