My favorites | Sign in
Google
Projects on Google Code Results 1 - 10 of 300
function knapsack() clc; %0-1背包问题 %max sum(vi*xi) s.t. w*x'<=c; xi=0 or 1; 1<=i<=n; n = 5 c = 10 w = [2 2 6 5 4] v = [6 3 5 4 6] x = []; %按照动态规划算法的递归式编程 jMax = min(w(n)-1,c) for j=1:jMax m(n,j) = 0; end for j=w(n):c m(n,j) = v(n); end for i=n-1:-1:2 jMax = min(w...
MPSpack is a user-friendly and fully object-oriented MATLAB toolbox that implements the method of particular solutions, nonpolynomial FEM, and related boundary methods (e.g. fundamental solutions, layer potentials) for efficient and highly accurate solution of Laplace eigenvalue problems, interior/e...
topion - обработка ионограмм внешнего зондирования. Решаемые задачи: 1. Нарезка непрерывных выборок на отдельные кадры для дальнейшей обработки. 2. Визуализация и чистка кадров. 3. Оцифровка ионограммы и сохранение результатов в текстовых файлах. 4. Расчёт электронных профилей.
= Elliptic integrals and Jacobi elliptic functions. = The [http://www.mathworks.com/ Matlab] implementation for the evaluation of [http://en.wikipedia.org/wiki/Elliptic_integral Elliptic integrals of three type] and [http://en.wikipedia.org/wiki/Jacobi%27s_elliptic_functions Jacobi's elliptic fu...
= IMOS Toolbox = http://imos-toolbox.googlecode.com/svn/wiki/images/imos_logo.png _IMOS is an initiative of the Australian Government being conducted as part of the National Collaborative Research Infrastructure Strategy._ _The short version:_ The IMOS Matlab Toolbox converts raw [Supporte...
Lab# is a .Net library written in C# 2.0 to interact with MATLAB® from any .Net application. Technically Lab# is a wrapper around the [http://www.mathworks.com/access/helpdesk/help/techdoc/apiref/bqoqnz0.html MATLAB engine API]. This API allow you to get and put matrices in MATLAB. The target...
MATLAB Pointer Library provides an implemetation of pointers and data structures in MATLAB The idea of the library is taken from DSATX - [http://www.mathworks.com/matlabcentral/fileexchange/loadFile.do?objectId=212&objectType=file The Data Structures & Algorithms Toolbox] (Yaron Keren). Unfortuna...
This is a Matlab (and Standalone application) port for the excellent machine learning algorithm `Random Forests' - By Leo Breiman et al. from the R-source by Andy Liaw et al. http://cran.r-project.org/web/packages/randomForest/index.html ( Fortran original by Leo Breiman and Adele Cutler, R port by ...
Snow Dots defines nuts and bolts for writing and running Psychophysics experiments in Matlab. It extends the [http://tower-of-psych.googlecode.com Tower of Psych], which defines high-level organization for Psychophysics experiments. It also extends [http://psychtoolbox.org/wikka.php?wakka=Psychto...
Scripts for plotting [http://www.mohid.com MOHID] netcdf files in matlab. Prerequisites are [http://www.matlab.com Matlab] version 6.5 or greater, [http://mexcdf.sourceforge.net/ mexnc], and [http://www.eos.ubc.ca/~rich/map.html m_map]. Here's a summarized [http://code.google.com/p/mohidnetcdf...
1 2 3 4 5 6 7 8 9 10 Next