About bearparc

A software development blog for the qualified developer

Blogroll

Application Server (24)
Business Intelligence (13)
Business Logic Layer (6)
C (3)
C++ (4)
CMMI (4)
Data Mining (3)
DataMart (11)
DataWarehouse (11)
ETL (7)
FAQ – Troubleshooting (8)
Framework (4)
Hardware (10)
Informatica Powercenter (6)
Investition (2)
J2ee (8)
Java (6)
JBoss (1)
Liferay (11)
LINUX (12)
matlab (3)
objektorientiertes Design (2)
OLAP (7)
Oracle (54)
Projektmanagement (5)
Prozeßmodelle (4)
Software (43)
SQL (28)
Uncategorized (41)
Web 2.0 (5)
Weblogic (17)
wordpress (5)
XML (2)

WP-Cumulus by Roy Tanck and Luke Morton requires Flash Player 9 or better.

www.brokerbase.ch network

Search



Add to Technorati Favorites Blogverzeichnis - Blog Verzeichnis bloggerei.de Deutsches Blog Verzeichnis blogoscoop Add to Google http://www.wikio.de

matlab

Matlab – char string vergleichen

Monday, March 14th, 2011

A=’test’; B=’Test’; if strcmp(A,B); msgbox(‘OK’); else msgbox(‘falsch’); end

matlab – simByEuler – Euler simulation of stochastic differential equations (SDEs) Synopsis

Tuesday, March 1st, 2011

Synopsis [Paths, Times, Z] = SDE.simByEuler(NPERIODS) [Paths, Times, Z] = SDE.simByEuler(NPERIODS, ‘Name1′, Value1, ‘Name2′, Value2, …) Description This method simulates any vector-valued SDE of the form where: X is an NVARS-by-1 state vector of process variables (for example, short rates or equity prices) to simulate. W is an NBROWNS-by-1 Brownian motion vector. F is an NVARS-by-1 vector-valued drift-rate [...]

matlab eye – Identity matrix

Tuesday, March 1st, 2011

yntax Y = eye(n) Y = eye(m,n) Y = eye([m n]) Y = eye(size(A)) Y = eye(m, n, classname) Description Y = eye(n) returns the n-by-n identity matrix. Y = eye(m,n) or Y = eye([m n]) returns an m-by-n matrix with 1‘s on the diagonal and 0‘s elsewhere. The size inputs m and n should be nonnegative integers. Negative integers are treated as 0. [...]