First
|
Prev |
Next
|
Last
Pages: 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988
Database stored procedure parameters Hi all, I would like to run a stored procedure from MATLAB, and provide a java object (in this case a CLOB-equivalent) as one of the parameters. Consider the following "hello world" Oracle procedure: CREATE OR REPLACE PROCEDURE testProc (inClob IN VARCHAR2, outChar OUT VARCHAR2) IS BEGIN outChar := 'Hello W... 15 Apr 2010 12:30
installing knitro 6.0 in matlab R2009a "Ian Washington" <idwashin(a)uwaterloo.ca> wrote in message <gsfosv$cj7$1(a)fred.mathworks.com>... Hello, I am trying to install Ziena Optimization's KNITRO 6.0 solver in the latest version of matlab to complement the optimization toolbox that I have already installed. I am running a windows vista 64 bit system ... 9 Apr 2010 05:37
Error" "he output arguments of the returned function not assigned" Hello, I have been experiencing the following error when I return multiple arguments from a program that the output arguments of the returned function not assigned during the call to the program. All the output arguments are calculated within the function properly. I believe this is a simple mistake but I canno... 8 Apr 2010 17:25
colormap problem plz help!!!!!!11 i dont know how to define a new color map. plz can u solve that prblm 4 me plzzzzzzzzzzzzzzzzz ... 8 Apr 2010 20:48
quad using integers When I try to execute this code : f=@(v,d) sqrt(1-(sin(d./0.1)).^2.*(sin(v)).^2); for ii = 1:-0.1:0.1 INT(ii) = quad(@(v) f(v,ii),0,1) end I get an error message like this : ??? Subscript indices must either be real positive integers or logicals. Error in ==> lab32 at 9 INT(ii) = quad(@(v) f(v,ii),0,1)... 8 Apr 2010 16:18
Using parfor with a while loop Is it possible to parallelize a for loop that contains a while loop? I have code that has a large number of iterations for the inner loop, because each instance of the outer for loop has a different number of iterations to reach a threshold. Is it possible to do this in parallel? ... 9 Apr 2010 11:07
Regexp search cell array "Thomas Ibbotson" <thomas.ibbotson(a)gmail.com> wrote in message <hpl4so$r6d$1(a)fred.mathworks.com>... I am currently finding files in a directory using the following code: re = 'some regular expression'; f = dir('.'); matchingFiles = f(cellfun(@(x) ~isempty(regexp(x, re, 'once')), {f.name})).name; Some... 8 Apr 2010 17:25
How to eliminate/replace values if accumulated sum in an arrayexceeds a certain limit us wrote: you are wrong... there are NO ...trick functions... at all in ML... I would have to disagree, at least about why(). I'm virtually certain that Loren never did anything "because the tall and not very irritable weasel suggested it". For a ferret, maybe, but never for a weasel. ... 8 Apr 2010 14:00
Regexp search cell array I am currently finding files in a directory using the following code: re = 'some regular expression'; f = dir('.'); matchingFiles = f(cellfun(@(x) ~isempty(regexp(x, re, 'once')), {f.name})).name; Somehow I feel there must be a better way to do this. Does anyone have any suggestions? Tom ... 8 Apr 2010 14:00 |