Eng-Tips is the largest engineering community on the Internet

Intelligent Work Forums for Engineering Professionals

Search results for query: *

  1. truetears

    Running script for different datafiles consecutively

    My script is: clc; clear; % Import data % PD: probability of default % CM: covariance matrix % DT: default threshold PD = xlsread('Book1.xlsx','PD'); CM = xlsread('Book1.xlsx','COV'); DT = xlsread('Book1.xlsx','DT'); Original_PD = PD; %Store...
  2. truetears

    Unconstrained Maximisation Problem

    Yup I do have the optimization toolbox, in fact, I think I've got the code, however the problem is that I've been running it since last night and it still hasn't finished, how do I know when a script has finished running? And how can I make it run faster? The code + data file is attached below...
  3. truetears

    Unconstrained Maximisation Problem

    Oh I see, I've searched the mathsworks site, there doesn't appear to be anything similar.
  4. truetears

    Unconstrained Maximisation Problem

    Hi, sorry what is this file exchange section? I am new to the forums, apologies if this was posted in the wrong place.
  5. truetears

    Unconstrained Maximisation Problem

    Hi everyone, essentially my aim is to maximise the unconstrained equation (1) with respect to lambda_i's for i = 0, 1, ..., 10. These lambda_i's can take on any REAL value, including 0. All other variables and functions are defined as follows: I wish to solve for these lambda_i's in matlab...
  6. truetears

    Matlab cdsbootstrap function

    Hi everyone, I am very very new to matlab, actually I only just got the program and I only require to run one code. A good friend of mine wrote a code for me however it doesn't seem to work, I have attached the code and data files required, can anyone tell me what's wrong or fix it for me? Much...
Back
Top