i want to implement recurrent neural network in order to solve optimization problem, can any one help me please with some codes in matlab or any effecient documents.thanks
thank you suman, Mariano and ali, but i want knowing if neurodynamic optimization means i will solve mathematical problems using RNN or i will optimize (enhance)the work(functionnality) of RNN
With the package I suggest you, you don't have to implement te ANN but only understand how to run the ANN itself. You have to import your dataset, and then run the neural network inside your work.
I think you have to make clear your question by giving some considered mathematical problems. For optimizing mathematical problems, metaheuristic algorithms usually are used. For your information, ANNs are usually applied for two purposes: prediction and classification. For both of these purposes, it needs the label class or the value of true prediction, in order to adapt your ANN to your problem. If you want to optimize your mathematical problems, why you do not use a powerful meta heuristic algorithm called Stochastic Fractal Search?
You can use the Neural Network toolbox GUI in MATLAB using nntool command in command prompt.The trained network can be used as an objective function for solving optimization problems .For example,you can use Neural network as a fitness function in Genetic algorithm .Herein,you will have to make a function which takes in input values and returns the neural network predicted values as output.This function handle(@ )will have to be used in genetic algorithm GUI in MATLAB.