下列Matlab代码,能求解微分方程 y'(t) = 2*t , y(0) = 1的是( ) A: tspan = [0 5];<br> y0 = 0;<br> [t,y] = ode45(@(t,y) 2*t, tspan, y0); B: tspan = [0 5];<br>y0 = 1;<br>[t,y] = ode45(@(t,y) 2*t, tspan, y0); C: tspan = [0 5];<br>y0 = 1;<br>[t,y] = ode45(@(t,y) 2*y, tspan, y0); D: tspan = [0 5];<br>y0 = 1;<br>[t,y] = ode45(@(t,y) 2*t*y, tspan, y0);
下列Matlab代码,能求解微分方程 y'(t) = 2*t , y(0) = 1的是( ) A: tspan = [0 5];<br> y0 = 0;<br> [t,y] = ode45(@(t,y) 2*t, tspan, y0); B: tspan = [0 5];<br>y0 = 1;<br>[t,y] = ode45(@(t,y) 2*t, tspan, y0); C: tspan = [0 5];<br>y0 = 1;<br>[t,y] = ode45(@(t,y) 2*y, tspan, y0); D: tspan = [0 5];<br>y0 = 1;<br>[t,y] = ode45(@(t,y) 2*t*y, tspan, y0);
设x=1, y=2, 下面程序段执行后x,y的取值是( )。t=xx=yy=t A: x=2 y=1 B: x=1 y=2 C: x=1 y=1 D: x=2 y=2
设x=1, y=2, 下面程序段执行后x,y的取值是( )。t=xx=yy=t A: x=2 y=1 B: x=1 y=2 C: x=1 y=1 D: x=2 y=2
Simplify the expression:$({\frac{3x^{3/2}y^3}{x^2y^{-1/2}})^{-2}}$Which answer is CORRECT? A: $9xy^7$ B: $\frac19 xy^{-7}$ C: $\frac19 x^{-1}y^7$ D: $9 x^{-1}y^7$
Simplify the expression:$({\frac{3x^{3/2}y^3}{x^2y^{-1/2}})^{-2}}$Which answer is CORRECT? A: $9xy^7$ B: $\frac19 xy^{-7}$ C: $\frac19 x^{-1}y^7$ D: $9 x^{-1}y^7$
一振幅为A、周期为T、波长为λ平面简谐波沿X负向传播,在X=(1/2)λ处,t=T/4时振动相位为π,则此平面简谐波的波动方程为:() A: y=Acos(2πt/T-2πx/λ-1/2π) B: y=Acos(2πt/T+2πx/λ+1/2π) C: y=Acos(2πt/T+2πx/λ-1/2π) D: y=Acos(2πt/T-2πx/λ+1/2π)
一振幅为A、周期为T、波长为λ平面简谐波沿X负向传播,在X=(1/2)λ处,t=T/4时振动相位为π,则此平面简谐波的波动方程为:() A: y=Acos(2πt/T-2πx/λ-1/2π) B: y=Acos(2πt/T+2πx/λ+1/2π) C: y=Acos(2πt/T+2πx/λ-1/2π) D: y=Acos(2πt/T-2πx/λ+1/2π)
下列程序段的执行结果是( )。 x = 5: y = 7: z = 8 If x < y Then t = x: x = y: y = t End If If y < z Then t = y: y = z: z = t If x < y Then t = x: x = y: y = t End If End If Print x, y, z A: 8 5 7 B: 8 7 5 C: 5 7 8 D: 7 5 8
下列程序段的执行结果是( )。 x = 5: y = 7: z = 8 If x < y Then t = x: x = y: y = t End If If y < z Then t = y: y = z: z = t If x < y Then t = x: x = y: y = t End If End If Print x, y, z A: 8 5 7 B: 8 7 5 C: 5 7 8 D: 7 5 8
已知X=1,Y=2,T=0 经程序段X=T:T=Y:Y=T 赋值后 X,Y 值分别为()
已知X=1,Y=2,T=0 经程序段X=T:T=Y:Y=T 赋值后 X,Y 值分别为()
8 Complete these animals’ names. ► r a t rat 1 h_ _ _ e ____ 2 g _ _ t ____ 3 b _ _ l ____ 4 c _ _ f ____ 5 f _ _ g ____ 6 m _ _ _ e ____ 7 d _ _ _ _ y ____ 8 t _ _ _ y ____
8 Complete these animals’ names. ► r a t rat 1 h_ _ _ e ____ 2 g _ _ t ____ 3 b _ _ l ____ 4 c _ _ f ____ 5 f _ _ g ____ 6 m _ _ _ e ____ 7 d _ _ _ _ y ____ 8 t _ _ _ y ____
2 Complete the missing letters. ► m o v i e movie 1 g _ _ b _ g _ ____ 2 s _ b _ _ y ____ 3 c _ _ s _ t ____ 4 c _ _ d y ____ 5 a t _ _ _ n _ y ____ 6 g _ s _ l _ _ e ____ 7 t r _ _ _ p_ _ t _ t _ _ n ____ 8 b _ l l _ _ _ d ____
2 Complete the missing letters. ► m o v i e movie 1 g _ _ b _ g _ ____ 2 s _ b _ _ y ____ 3 c _ _ s _ t ____ 4 c _ _ d y ____ 5 a t _ _ _ n _ y ____ 6 g _ s _ l _ _ e ____ 7 t r _ _ _ p_ _ t _ t _ _ n ____ 8 b _ l l _ _ _ d ____
已知t函数定义如下,下列会输出True的语句是t = lambda x, y, z=0: x + y > z A: print(t(1, 2)) B: print(t(1, 2, 3)) C: print(t(1)) D: print(t(1, 2, 0))
已知t函数定义如下,下列会输出True的语句是t = lambda x, y, z=0: x + y > z A: print(t(1, 2)) B: print(t(1, 2, 3)) C: print(t(1)) D: print(t(1, 2, 0))
下列程序的输出结果是:x = 1 y = 2 def swap(a, b): t = a a = b b = t print a, b swap(x, y) print x, y A: 1 21 2 B: 2 11 2 C: 1 22 1 D: 2 12 1
下列程序的输出结果是:x = 1 y = 2 def swap(a, b): t = a a = b b = t print a, b swap(x, y) print x, y A: 1 21 2 B: 2 11 2 C: 1 22 1 D: 2 12 1