Re: commBCHEncoder/commBCHDecoder
"Steven_Lord" <slord@mathworks.com> wrote in message <kh7j2o$g8v$1@newscl01ah.mathworks.com>...> > > "Timothy Koh" <timothy_koh87@hotmail.com> wrote in message >...
View Articlehow to split a matrix
Hi I have a <39014400x1 double> matrix. How do i go about splitting it and merge it back together? Help is greatly appreciated Regards Timothy
View Articlehelp
For my final year project I have chosen to develop a sign language recognition system. I hope to implement it using Neural Network Architecture. Even though I read so many research papers I culdn't get...
View ArticleRe: how to split a matrix
"Timothy Koh" <timothy_koh87@hotmail.com> wrote in message <kh9eo1$fmj$1@newscl01ah.mathworks.com>...> Hi> > I have a <39014400x1 double> matrix. How do i go about splitting...
View ArticleRe: how to split a matrix
"James Tursa" wrote in message <kh9fap$h62$1@newscl01ah.mathworks.com>...> "Timothy Koh" <timothy_koh87@hotmail.com> wrote in message <kh9eo1$fmj$1@newscl01ah.mathworks.com>...>...
View Articleread values from ssGetPWork(S)[0]
I'm having problem in reading the values of a variable whose address is stored in the pointer ssGetPWork(S)[0]. The code for mdlStart and mdlOutput function is as follow static void mdlStart(SimStruct...
View ArticleRe: Stiffness problem in ODEs
"Fotis Dimitrakopoulos" <f.dimitrak@gmail.com> wrote in message <kh4ltv$8ub$1@newscl01ah.mathworks.com>...> Hello every one, I am trying to numerically solve a system of 5 coupled diff....
View ArticleRe: Version 2012b breaks parallel toolbox code
"Jessica Mustard" <jessica.mustard@tufts.edu> writes:> My parallel code stopped working with the new version 2012b,> specifically I have code that grabs the ID of the current work and>...
View ArticleNeed Help
I have a big circle with random small circle inside a big circle. I plot random point inside big circle. So, I want to check points inside small circle and outside small circle. Here my code : for i =...
View ArticleRe: sort 2D points in counter- clockwise way
"Bogdan Dzyubak" <illan7@gmail.com> wrote in message <jfs0ui$s62$1@newscl01ah.mathworks.com>...> Thanks, Z. Simple and elegant. Hi, great idea but didn't work for my data. Found a...
View ArticleCBLAS and MEX row/column major order confusion
Hi, I have a problem with cblas_dgemv in a MEX file as follows: ********************** #include <stdio.h> #include <cblas.h> #include <mex.h> #include <matrix.h> #include...
View ArticleRe: Non-linear optimization
"Matt J" wrote in message <kh8skk$s6c$1@newscl01ah.mathworks.com>...> Bear in mind also that generic LM doesn't use the Jacobian of the cost function F(x), but rather the Hessian of F, or...
View ArticleHow to convert Bitmap image to MWarray
I have a function written in Matlab that takes an image and some parameters as input and outputs the modified image. The function works the way I wanted when I run it in Matlab. Using the .NET builder...
View ArticleRe: Matlab 2010B with MS Access 2010
Please see this tutorial:http://dali.feld.cvut.cz/ucebna/matlab/toolbox/database/tutor-34.html Specifically, see this: matlab\toolbox\database\dbdemos\dbinsertdemo.m I'll tell you truthfully, that...
View ArticleRe: Importing .xlsx files in parallels
I hate Macs so much!! What exactly is the problem? You need to convert a bunch of XLSX files to XLS files b/c you don't have Matlab 2012a? I can crate an Excel Macro for you to go into all XLSX files...
View Articleproblem with finding equilibrium points of nonlinear system
Hi all, I need to find equilibrium points of nonlinear system which consist of 9 equations. It is complicated system, so when I tried find equilibrium points in this way: syms x1 x2 solve(x*2+3,x2^3-2,...
View ArticleRe: Importing .xlsx files in parallels
Run this code to convert all .XSLX files in a specific folder, of your choosing, to .XSL files. Sub Convert_xls_Files() Dim strFile As String Dim strPath As String With Application...
View ArticleRe: problem with finding equilibrium points of nonlinear system
On 3/8/2013 1:56 PM, gilraen wrote:> Hi all,>> I need to find equilibrium points of nonlinear system which consist of 9 equations.>It is complicated system, so when I tried find equilibrium...
View ArticleRe: problem with finding equilibrium points of nonlinear system
ok, here is full code: syms x1 x2 x3 x4 x5 x6 x7 x8 x9 %parameters d1=8.5; d2=0.7; b1=6*10^(-5); b2=3*10^(-6); r1=10; r2=1; t1=10; t2=10^(-4); t3=0.1; t4=10^(-4); [xe1 xe2 xe3 xe4 xe5 xe6...
View Article