Changeset 2121


Ignore:
Timestamp:
09/08/09 11:54:55 (15 years ago)
Author:
jschierm
Message:

Addition of copyright (done on 6/11, apparently never committed).

Location:
issm/trunk/src/m/classes/@dakota_method
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • issm/trunk/src/m/classes/@dakota_method/dakota_method.m

    r263 r2121  
    33%
    44%  [dm]=dakota_method(method)
     5%
     6%  where the required input is:
     7%    method       (char, beginning of method name)
     8%
     9%  and the output properties and defaults are:
     10%    method       (char, full method name, '')
     11%    type         (char, type of method, '')
     12%    variables    (cell array, applicable variable types, {})
     13%    lcspec       (cell array, linear constraint specs, {})
     14%    responses    (cell array, applicable response types, {})
     15%    ghspec       (cell array, gradient and hessian specs, {})
     16%    params       (structure, method-dependent parameters, [])
     17%
     18%  this class is used to guide the writing of a dakota input
     19%  file for the specified dakota_method.
     20%
     21%  note that zero arguments constructs a default instance; one
     22%  argument of the class copies the instance; and one argument
     23%  with enough characters to match a unique method constructs
     24%  a new instance of that method.
     25%
     26%  "Copyright 2009, by the California Institute of Technology.
     27%  ALL RIGHTS RESERVED. United States Government Sponsorship
     28%  acknowledged. Any commercial use must be negotiated with
     29%  the Office of Technology Transfer at the California Institute
     30%  of Technology.  (NTR 47078)
     31%
     32%  This software may be subject to U.S. export control laws.
     33%  By accepting this  software, the user agrees to comply with
     34%  all applicable U.S. export laws and regulations. User has the
     35%  responsibility to obtain export licenses, or other export
     36%  authority as may be required before exporting such information
     37%  to foreign countries or providing access to foreign persons."
    538%
    639classdef dakota_method
  • issm/trunk/src/m/classes/@dakota_method/display.m

    r27 r2121  
    33%
    44%  []=display(dm)
     5%
     6%  "Copyright 2009, by the California Institute of Technology.
     7%  ALL RIGHTS RESERVED. United States Government Sponsorship
     8%  acknowledged. Any commercial use must be negotiated with
     9%  the Office of Technology Transfer at the California Institute
     10%  of Technology.  (NTR 47078)
     11%
     12%  This software may be subject to U.S. export control laws.
     13%  By accepting this  software, the user agrees to comply with
     14%  all applicable U.S. export laws and regulations. User has the
     15%  responsibility to obtain export licenses, or other export
     16%  authority as may be required before exporting such information
     17%  to foreign countries or providing access to foreign persons."
    518%
    619function []=display(dm)
Note: See TracChangeset for help on using the changeset viewer.