comparison PROJECTS @ 2575:e57847e2de87

[project @ 1996-12-09 18:05:37 by jwe]
author jwe
date Mon, 09 Dec 1996 18:05:39 +0000
parents 2480ef198c46
children 3723512a827a
comparison
equal deleted inserted replaced
2574:cfa9f35fd407 2575:e57847e2de87
67 - Call FSQP. 67 - Call FSQP.
68 68
69 * Optional inputs for fsqp. 69 * Optional inputs for fsqp.
70 70
71 * Allow parameters to be passed through the call to fsolve() to the 71 * Allow parameters to be passed through the call to fsolve() to the
72 user-supplied function for Matlab compatibility. Don't place an 72 user-supplied function for Matlab compatibility. Don't place an
73 upper limit on the number of arguments. 73 upper limit on the number of arguments.
74 74
75 * If possible, make economy QR factorization actually take advantage 75 * If possible, make economy QR factorization actually take advantage
76 of the form of the result instead of just dropping columns. 76 of the form of the result instead of just dropping columns.
77 Lapack doesn't appear to do this yet. 77 Lapack doesn't appear to do this yet.
92 * Given two vectors x and y of length m and n, implement a function 92 * Given two vectors x and y of length m and n, implement a function
93 outer (x, y, f) that returns an m-by-n matrix with entries 93 outer (x, y, f) that returns an m-by-n matrix with entries
94 f (x(i), y(j)). If f is omitted, multiplication is the default. 94 f (x(i), y(j)). If f is omitted, multiplication is the default.
95 Should probably work for any vectors, not just if x is a column 95 Should probably work for any vectors, not just if x is a column
96 vector and y is a row vector. 96 vector and y is a row vector.
97
98 * On systems that support matherr(), make it possible for users to
99 enable the printing of warning messages.
97 100
98 -------- 101 --------
99 Graphics: 102 Graphics:
100 -------- 103 --------
101 104