dependnames

Зависимая переменная cfit, sfit, или fittype объект

Синтаксис

dep = dependnames(fun)

Описание

dep = dependnames(fun) возвращает (одинарное) имя зависимой переменной cfit, sfit, или fittype fun объекта как массив ячеек 1 на 1 из векторов символов dep.

Примеры

f1 = fittype('a*x^2+b*exp(n*x)');
dep1 = dependnames(f1)
dep1 = 
    'y'

f2 = fittype('a*x^2+b*exp(n*x)','dependent','power');
dep2 = dependnames(f2)
dep2 = 
    'power'

См. также

| |

Введенный в R2006b