Feeds
提问
what's the point of Not enough input arguments?
function [f,g,H] = objective(x,A,b,c) m = size(A,1); d = A*x + b; D = diag(1./d); f = c'*x - log(d')*ones(m,1); g = c - ...
7 years 前 | 2 个回答 | 0
2
个回答提问
how to create symbolic function for vector input?
I'm new to Matlab and I wonder how to input a vector to a symbolic function. It is said in the document that creating vectors by...
7 years 前 | 1 个回答 | 0
