Database connection expires335 (1/28/2010 9:30:20 PM) comp.soft-sys.matlab Here is something that is a minor frustration. Using the Database Toolbox, I connect to the database just fine. However, after a period of time, that connection seems to expire. (Doesn't seem to be a fixed p... the
Adding RAM will solve Out of Memory?427 (7/26/2006 3:20:37 PM) comp.soft-sys.matlab I know that the dreaded "Out of Memory" error strikes, in general, because of the amount of addressable space available on a 32-bit architecture. I would expect, therefore, that if I have a 1-GB RAM processor,... the
Breakpoint alley disappeared238 (6/4/2006 2:14:41 PM) comp.soft-sys.matlab In the Matlab editor, the breakpoint alley (the column where you set breakpoints) has disappeared. I have NO idea why. How can I get it back. I prefer a solution that does not entail restarting Matlab, but I w... the
Filling an array with342 (3/31/2006 1:53:35 PM) comp.soft-sys.matlab Suppose I have a vector v = [4 3 5 1] and from that vector I want to create the array A = [1 1 1 1 0; 1 1 1 0 0; 1 1 1 1 1; 1 0 0 0 0] where the elements of "v" determine the number of ones to put in e... the
Matlab and Visual Source Safe147 (3/21/2006 4:57:25 PM) comp.soft-sys.matlab Suppose I run a function "myFunc.m" from the command window. Then, I use Visual Source Safe to get an updated version of that file. When I run myFunc again, will Matlab automatically use the updated version, or... the
Vector index into vector037 (3/10/2006 5:24:53 AM) comp.soft-sys.matlab In general, if A is an array, and V is a vector used to index into A (via linear indexing), then the shape of A(V) is equal to the shape of V itself. However, if A is a row vector, then A(V) will be a row vect... the
Convert numeric array to cell array of strings381 (2/22/2006 2:19:37 PM) comp.soft-sys.matlab Suppose I have a 4x4 numeric array of integers: >> A = magic(4); From A, I would like to create a 4x4 cell array B, in which each element is B{i,j} = num2str(A(i,j)). It is easy to do this with loops: >> fo... the
Product of distributions --> gaussian136 (1/31/2006 3:23:15 PM) comp.soft-sys.matlab Is there a distribution p(x) such that if x1 and x2 are drawn independently from that distribution, that the distribution of the product x1*x2 is gaussian distributed? ... the
Breakpoints cleared during execution240 (1/26/2006 3:01:40 PM) comp.soft-sys.matlab Are there any operations that will cause breakpoints to be cleared during execution of a series of M-files? I know that the "pack" command will clear breakpoints if done from the command window, but not if it i... the
Database connection expires335 (1/28/2010 9:30:20 PM) comp.soft-sys.matlab Here is something that is a minor frustration. Using the Database Toolbox, I connect to the database just fine. However, after a period of time, that connection seems to expire. (Doesn't seem to be a fixed p... thecyclist(381)
Color Individual Bars in Bar Plot594 (2/1/2010 7:45:32 PM) comp.soft-sys.matlab Hi, I have been trying to figure this out for a few days and I figured its time to get some direct help. I have tried some examples i found online but they are not working as expected they just give me random ... centersnare30(3)
random #2251 (3/13/2010 5:39:08 PM) comp.soft-sys.matlab Hi everyone, Say I have an array of data. I want to select values from that array randomly and use it later in my program. 'rand' and 'randn' commands are used to generate random values in the defined inteva... pyarsa_madhu(51)
index question #2237 (3/15/2010 4:45:30 PM) comp.soft-sys.matlab Hi all I have a matrix: A=magic(10); B=[1 3 7]; C=[2 4 6]; out=A(B, C); I want to see out=[A(1, 2) A(3, 4) A(7, 6)]=[99 20 48] But the result is out=[ 99 8 67 81 20 54 5 89 48 ] How can I do what I wan... ryuyr77(123)
Start m-file when new csv-Data available6144 (8/9/2010 7:07:06 AM) comp.soft-sys.matlab Hello everybody,
I have a programme, taht calculates signals an saves them in a csv-Data.
Then I have a m-file that imports this csv-Data an works with it.
Now I want the m-file to start automatically ... Enning
Spring 2011 MATLAB Contest, April 13 - April 209932 (3/15/2011 1:24:05 PM) comp.soft-sys.matlab Dear MATLAB Central Community; The Spring MATLAB Programming Contest will start at noon, Boston time/16:00 UTC Wednesday April 13th and will run through noon, Boston time/16:00 UTC the following Wednesday Apri... Helen.Chen(108)
Fall 2011 MATLAB Contest, November 2 - November 97230 (11/2/2011 3:44:08 PM) comp.soft-sys.matlab Dear MATLAB Central Community - The Fall MATLAB Programming Contest will start at noon, Boston time/16:00 UTC today, Wednesday November 2 and will run through noon, Boston time the following Wednesday Novembe... Helen.Chen(108)
rayleigh distribution #2337 (1/15/2010 9:32:21 PM) comp.soft-sys.matlab I need a unit variance and zero mean Rayleigh distribution. so I use N=1e6; fd=1/sqrt(2)*(randn(1,N)+j*randn(1,N)); to verify abs(mean(fd)) abs(var(fd)) this gives me the result Now if I consider rayleigh p... ace.kris(9)