From: Abdullah on 30 Mar 2010 23:27 Hi there, I have an Error in ==> totbl at 15 H.bas = writelbl('y',1:m); do know what does that mean? any thought Please delight us, matlab learner! details of the function. function H = totbl(A,b,p,alpha,xlab,zlab,conslab) % syntax: H = totbl(A,b,p,alpha,xlab,zlab,conslab); % store the matrices A,b,p,alpha as a tableau H % row and column labels stored in last two rows and columns Regards, Abdullah
From: ImageAnalyst on 30 Mar 2010 23:53 Abdullah: OK, that's the line that caused the error, but you forgot to give the description of the error. Every error will have a message/description along with it. So what did it say?
From: Walter Roberson on 31 Mar 2010 00:00 Abdullah wrote: > Hi there, I have an Error in ==> totbl at 15 > H.bas = writelbl('y',1:m); > do know what does that mean? any thought Please delight us, matlab learner! It would help us a lot if you were to post -exactly- what the error message says. It would probably also help if you were to post the size and data class of each of the variables you are passing to totbl().
From: Abdullah on 31 Mar 2010 00:01 ImageAnalyst <imageanalyst(a)mailinator.com> wrote in message <5db67347-f9e8-4d48-a472-020b63fb6cc9(a)z39g2000vbb.googlegroups.com>... > Abdullah: > OK, that's the line that caused the error, but you forgot to give the > description of the error. Every error will have a message/description > along with it. So what did it say? Thank you. the error is as follows: ??? Undefined function or method 'writelbl' for input arguments of type 'char'. Error in ==> totbl at 15 H.bas = writelbl('y',1:m); Regards,
From: ImageAnalyst on 31 Mar 2010 00:25
OK, well apparently there's no such function writelbl, or at least not one that's expecting a character argument. If you place the cursor in writelbl and type control-D, what does it say? Probably the same thing - that the function is not defined. Contact the person who wrote the m file and ask them for that function. Or do a "Edit-> Find files..." for it. |