代码搜索结果

找到约 10,000 项符合 F 的代码

f.m

function [res] = F(I,M,V,s) % This function is used by Runge-Kutta order 4 method % (Algorithm 5.7) to define the functions on the right % hand side in the differential equations. if M == 2 g

f.m

function res = F(I,M,V,ss) % This function is used by Runge-Kutta order 4 method % (Algorithm 5.7) to define the functions on the right % hand side in the differential equations. s = ss{I}; if M

f.m

function r=f(x) n=3; r=zeros(n,1); r(1)=x(1).^2-10*x(1)+x(2).^2+x(3)+7; r(2)=x(1)*x(2).^2+x(3).^2-2*x(3); r(3)=x(1).^2+x(2).^2-3*x(2)+x(3).^2;

f.m

function r=f(x) n=3; r=zeros(n,1); r(1)=x(1).^2-10*x(1)+x(2).^2+x(3)+7; r(2)=x(1)*x(2).^2+x(3).^2-2*x(3); r(3)=x(1).^2+x(2).^2-3*x(2)+x(3).^2;

f.m

function y=f(x) y=1./(1+exp(-x));