RCGA solving in MATLAB implementation - matlab

Now, I would like to practice some problem solving by use RCGA (Real Code Genetic Algorithms) in MATLAB. Could any helper provide me some example project matlab files about that ?
Thank you very much.

I wrote an article a few years ago on an application of genetic algorithms in MATLAB, which comes with example data and MATLAB code. Although the example doesn't use real-coding, it does demonstrate how to apply a custom chromosomal coding, so perhaps it would be a starting point for you that you could adapt.

Related

Optimization (LPP) in MATLAB

This is not exactly related to programming.
I would like to solve linear programming problem in MATLAB without using the in-built functions like linprog from toolboxes.
Any suggestions or examples are much appreciated.

Solution to nonlinear integro-differential equation

This question is regarding MATLAB implementation of the solution to IDE.
Consider IDE:
where the K(r',r,\theta) is the Kernel of the integration. Is there a simple implementation of the solution to this kind of equations? I know how to solve it in general, but I'm wondering if you could suggest something simpler and well implemented in MATLAB.

Levenberg-Marquardt optimization

Anyone knows where I cand find an .m (matlab ) file with the Levenberg-Marquardt moditication to the Newton's method to optimize a function?
Thanks
I always start with a search on file exchange. Found a LMF nonlinear solution. It also seems that there is a lsqnonlin function in The optimization toolbox. Of course that costs a small fortune and limits the portability of your code (one of many reasons I use Python these days).
You can try using the MATLAB MEX version of CMPFIT, if that fits your purpose.
Try it here: http://people.cas.uab.edu/~mosya/cl/MATLABcircle.html
This is a web-page from proffesor Chernov, who published some papers and a book on the matter. There are also c and matlab sources.

Which is a better method? libsvm or svmclassify?

I have been recently trying to use svm for feature classification. While i was doing so, a question came to my mind.
Which would be a better method to use, LIBSVM or svmclassify? What I mean by svmclassify is to use in-built functions in MATLAB such as svmtrain and svmclassify. In that sense, I was interested to know which method would be more accurate and which would be easier to use.
Since MATLAB has already the Bioinformatics toolbox already, why would you use LIBSVM? Aren't the functions like svmtrain and svmclassify already built in.. what additional benefits does LIBSVM bring about?
I would like to hear some of your opinions. Please Pardon me if the question is stupid..
I expect you would get very similar result using each library.
They are both very easy to use. The only big difference is that one comes with the MATLAB Bioinformatics toolbox and the other one you need to obtain from the authors web site and install by hand. If to you this is an issue I would recommend you stick to what is already installed in your computer. If not consider using LIBSVM, as it is a very well tested and well regarded library.
Also, from personal experience on playing with both, libSVM is much faster than MATLAB svm routines for obvious reasons. Last but not the least, libSVM has MATLAB plugins which can be called from MATLAB if you are more comfortable within a MATLAB environment.
I have also the same question, but I think that Libsvm is very useful and very easy in the case of multi-classes classification , but the matlab toolbox is designed for only two classes classification.
In my experience the libsvm performed giving cross validaion results as 45% where matlab code did 90%. So I looked up the explanation of matlab function for svm where they had such options related with perceptrones, I wonder if they are using pure svm or not but will write again in my case matlab was much better. (multiclass svm)

ICA (Independent Component Analysis) in matlab

Could you provide an example of ICA Independent Component Analysis IN MATLAB?
I know PCA is implemented in matlab but ICA, what about RCA?
Have a look at the FastICA implementation. I've used their R version before, I assume the matlab implementation does the same thing... On that page you get a description of the algorithm and pointers to more info.
Dr G was right.
Now, you are able to find a complete and a very useful Matlab Package (works also with 2013a version):
FastICA
Also you can find a another ICA and PCA Matlab implementation package there: ICA/PCA. But I have no experience with it.
The topic is quite old, but it is worth mentioning that in 2017a, matlab introduced reconstruction independent component analysis (RICA), which may come in handy for someone searching for ICA.