代码搜索:fx3
找到约 16 项符合「fx3」的源代码
代码结果 16
www.eeworm.com/read/458493/7295664
m fx3.m
function f = fx3(x)
% fx3 Evaluates f(x) = x - x^(1/3) - 2
f = x - x.^(1/3) - 2;
www.eeworm.com/read/458488/7296089
m fx3.m
function f = fx3(x)
% fx3 Evaluates f(x) = x - x^(1/3) - 2
f = x - x.^(1/3) - 2;
www.eeworm.com/read/144399/12797351
m fx3.m
function f = fx3(x)
% fx3 Evaluates f(x) = x - x^(1/3) - 2
f = x - x.^(1/3) - 2;
www.eeworm.com/read/172014/9726651
m fx3.m
function f = fx3(x)
% fx3 Evaluates f(x) = x - x^(1/3) - 2
f = x - x.^(1/3) - 2;
www.eeworm.com/read/461862/7215370
m interpolation.m
% function x3=interpolation(x1,x2)
% function varargout=interpolation(x1,x2)
clc
tic
nargout=3;
x1=0;x2=1;
k=0;
while k1e-6)
% while (abs(x2-x1)>1e-4) | (abs(fx3)>1e-6)
fx
www.eeworm.com/read/461862/7215369
m interpolation_xiuzheng.m
% function x3=interpolation_xiuzheng(x1,x2)
% function varargout=interpolation(x1,x2)
clc
tic
x1=0;x2=1;
fx1=3*x1+sin(x1)-exp(x1);
fx2=3*x2+sin(x2)-exp(x2);
% fx1=x1^3+x1^2-3*x1-3;
% fx2=x
www.eeworm.com/read/157968/11653479
m fx3.m
function a=fx3(x,randa)
Fx=exp(randa(1)+randa(2).*x+randa(3).*x.^2+randa(4).*x.^3+randa(5).*x.^4);
a=Fx*x^2;
www.eeworm.com/read/289252/3991591
m fx3.m
function y=fx3(x)
y(1)=x(1)*x(1)-10*x(1)+x(2)*x(2)+8;
y(2)=x(1)*x(2)*x(2)+x(1)-10*x(2)+8;
y=[y(1) y(2)];
www.eeworm.com/read/368261/9703643
m fx3.m
function y=fx3(x)
y(1)=x(1)*x(1)-10*x(1)+x(2)*x(2)+8;
y(2)=x(1)*x(2)*x(2)+x(1)-10*x(2)+8;
y=[y(1) y(2)];
www.eeworm.com/read/198623/7920386
s fx3.s
/
/
/ fx3 -- get integer
.globl geti
.globl ptemp
.globl putc
.globl putw
geti:
mov r1,-(sp)
mov r3,-(sp)
clr r3
mov $symbuf,r0
1:
movb (r0)+,r1
sub $'0,r1
cmp r1,$9
bhi 1f
mpy $10.,r3
a