First  |  Prev |  Next  |  Last
Pages: 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973
Memory management
Hello, I have the following declaration in my program. I have the following combination: P = 11; R = 3; Q = R^P; W = zeros(P, Q, R); At this point, i am limited to the above values. If I increase P = 15 or R = 4, i am getting "out of memory". Is there a better way to do such thing for higher values in a ... 11 Apr 2010 11:14
Edit avi files (keep audio)
Hello, I have a question about editing an avi file in matlab. I managed to read in the avi-file (the video data), edit it, and write it back to another avi-file. The problem is, the audio data is lost... So my question is, how can I extract the audio data from an avi, and how to store it with the video data when wr... 12 Apr 2010 08:05
logical data in UITABLE
Dear all I am designing a GUI in which there are 4 columns. 1st three are having data type numeric in which data will be entered from excel. I have problem with column in which the data type is logical and i set it editable. but when I run the GUI and try to select the check box, it does not get select. it happen when... 11 Apr 2010 04:45
pricing of matlab
Hello Friends, Saw a website thats offering a basic matlab for $129 http://www.sdiscounter.com/shop/item/215/ Is it actually true ? any experiences ? LFG. ... 20 Apr 2010 15:55
Random Projection for dimension reduction
ImageAnalyst <imageanalyst(a)mailinator.com> wrote in message <e5730eaa-ce50-4a18-859f-950385a4f70d(a)o6g2000yqj.googlegroups.com>... On Jul 22, 5:26 am, "ali " <rebelfi...(a)gmail.com> wrote: &#305; wonder is there m file or codes for dimesnion reduction in matlab about random projection like pca,svd --------... 11 Apr 2010 03:41
request for Matlab coding
... "satyanarayana kunisetti" <satyas45(a)gmail.com> wrote in message <hprg9a$2ch$1(a)fred.mathworks.com>... hi, can any one send matlab program for IEEE 14-bus controller and IEEE 30-bus controller using Newton Raphson load flow solution Method... this is related to my project work.. pls send solutions as so... 11 Apr 2010 03:41
iteration issue
Hi guys, I have the following code: for iteration = 1:5 iteration; A = 2; B =4; C =3; d_computed = (A + B +C) misclosure = [ d_computed] end However, I want my iteration to run such that my misclosure is as follows misclosure = [ previous_d_computed - current_d-com... 11 Apr 2010 02:37
a minor iteration problem
Hi guys, I have the following code: for iteration = 1:5 iteration; A = 2; B =4; C =3; d_computed = (A + B +C) misclosure = [ d_computed] end However, I want my iteration to run such that my misclosure is as follows misclosure = [ previous_d_computed - current_d-com... 11 Apr 2010 01:32
MATLAB Error in ==> sym.sym>sym.gt at 792 <-------HELP PLEASE
Im creating program to create the steepest ascent but can't get pass the following errors, ??? Error using ==> sym.sym>notimplemented at 2514 Function 'gt' is not implemented for MuPAD symbolic objects. Error in ==> sym.sym>sym.gt at 792 notimplemented('gt'); Error in ==> steepestA at 39 end ... 12 Apr 2010 23:40
Fibonacci
function fib(n) int n; if(n==0 ) return; else return n * fib(n-1); // line 7 I ran it fib(8) ??? Error: File: fib.m Line: 7 Column: 13 Missing MATLAB operator. Please help me ... 12 Apr 2010 11:24
First  |  Prev |  Next  |  Last
Pages: 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973