First
|
Prev |
Next
|
Last
Pages: 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206
simulation loop vectorization and slowdown I am running a small simulation program that I wrote, changing parameters for each run, doing some analysis, and saving into an excel file. Since there are many parameters, I end up with 7 loops running within eachother... My program is basically an m-file with several inputs, which I choose in the loops... Heres... 25 Jul 2010 07:36
Does Matlab update documentation for a particular version? For version R2009b the documentation for "conv" states that conv(u,v) = w(k) = sum{j} u(j) v(k-j) which is incorrect, since the v function should be v(k-j+1). This typo was fixed in version R2010a. Since I must use R2009b for various reasons, I'm wondering if Matlab fixes documentation errors like this bef... 21 Jul 2010 19:07
Implement MATLAB code in Visual Studio .NET Is there a way to implement MATLAB code or function into Visual Studio .NET? for example, I wrote a code for signal filtering. I want to implement this code into Visual Studio .NET. Thank you in advance. ... 21 Jul 2010 16:55
using fuzzy toolbox inside stateflow simulink function Hi Puran. Did you get this working? I'd be interested in your experiences as I'm shortly to face a similar task. cheers. ... 21 Jul 2010 16:55
relational operator tolerences Here's a bit more embellished version of my last example that uses the oneWithTol() function down at the bottom of the post to create the object in a single line. The object returned by oneWithTol allows you to do a series of tolerance-qualified comparisons with arbitrary numbers, all without function call syntax. ... 21 Jul 2010 16:55
How to align two time series fast? How to align two time series fast? Hi all, I have two time series, both are in the following format: Date Data 1/1/2010 5.3 1/2/2010 4.4 .... Lets label the first time series: MyDates1, MyData1 and the second time series: MyDates2, MyData2, where MyDates1 and MyData1 have the same number ... 23 Jul 2010 03:47
Excel/Matlab Cooperation Hello, I have an issue pertaining to opening Excel password protected files via Matlab. I was wondering if there is a way to pass the password when opening a password protected excel file in Matalb? Any help with this would be greatly appreciated. Thanks, Justin ... 22 Jul 2010 12:30
relational operator tolerences "Andy " <myfakeemailaddress(a)gmail.com> wrote in message snip ... That said, if you don't want to worry, you can just create your own wrapper function: function tf = isClose(A,B,tolerance) tf = (A-B) <= tolerance; end This would at least save some typing in the long run, while making your ... 21 Jul 2010 15:49
relational operator tolerences "John D'Errico" <woodchips(a)rochester.rr.com> wrote in message <i27go8$q2s$1(a)fred.mathworks.com>... "Brandon Moore" <moorebj.nospamplease(a)umich.edu> wrote in message <i27ebu$mkb$1(a)fred.mathworks.com>... Wondering if there is some easy way to adjust the tolerances on the relational operators (==, <, etc.) in MATL... 21 Jul 2010 15:49
Neural network: Retrieve training, validation, testing dataset Hi there, Two questions: 1. I'm using newff and train to create a neural network (LM algorithm). I need to retrieve the training, validation and testing dataset I'm using after the training (I'm using the default 60,20,20 division of the input dataset). I'could obtain those using dividerand in the input dataset (... 22 Jul 2010 13:35 |