代码搜索:CLOSE
找到约 10,000 项符合「CLOSE」的源代码
代码结果 10,000
www.eeworm.com/read/448516/7532634
java listing 11-11.java
try {
String query = new String("DROP INDEX CustName ON Customers ");
DataRequest = Database.createStatement();
DataRequest. execute(query);
DataRequest.close();
}
www.eeworm.com/read/448516/7532663
java listing 11-27.java
try {
String query = new String ("SELECT " +
"FirstName, LastName, Street, City, State, ZipCode, Sales " +
"FROM Customers " +
"WHERE NOT Sales = 50000 " );
DataRequest = Databas
www.eeworm.com/read/448516/7532666
java listing 11-106.java
try {
String query = new String (" DROP VIEW Store278 CASCADE");
DataRequest = Database.createStatement();
Results = DataRequest.DataRequest.execute(query);
DataRequest.close();
}
www.eeworm.com/read/448246/7536028
m gettickersdata.m
%{
Function for Downloading Trading Data from Yahoo
This is a simple algorithm that downloads trading data from yahoo based on a set of tickers
and user options.
The main advantage of this fun
www.eeworm.com/read/448207/7537992
pas welcomeform.pas
unit WelcomeForm;
interface
uses Windows, SysUtils, Classes, Graphics, Forms, Controls, StdCtrls,
Buttons, ExtCtrls, DB, DBTables;
type
TfrmWelcome = class(TForm)
btnOK: TButton;
www.eeworm.com/read/447444/7551020
m exp2_17.m
%************
%exp2_17.m
%功能:半对数坐标图形与线性坐标图形的比较
%************
clear
close
clc
x=0:0.1:1;
y=10.^x;
subplot(211)
semilogy(x,y)
title('semilogarithmic scales gragh')
grid on
subplot(212)
plo
www.eeworm.com/read/447444/7551021
m exp2_5.m
%绘制单位圆
clear
close all
clc
%定义时间范围
t=[0:0.01:2*pi];
x=sin(t);
y=cos(t);
plot(x,y)
axis([-1.5 1.5 -1.5 1.5])
%限定x轴和y轴的显示范围
grid on
axis('equal')
www.eeworm.com/read/447444/7551022
m exp2_3_.m
%plot绘图命令的使用
close all %关闭打开了的所有图形窗口
clc %清屏命令
clear %清除工作空间中所有变量
%定义时间范围
t=[0:pi/20:8*pi];
y=sin(t);
plot(t,y,'b:square')
% r表示线的颜色为红色,此外 y(黄色)g(绿色)b(蓝色)
%
www.eeworm.com/read/447444/7551086
m exp1_2.m
%问题:已知典型二阶系统的传递函数为G(s)=wn^2/(s^2+2*i*wn+wn^2),试绘制当wn=4时,
%i分别为0.1,0.2,...,1.0,2.0时的系统的单位阶跃响应。
close
clear
clc
wn=4;
kosai=[0.1:0.1:1,2];
figure(1)
hold on
for i=kosai
num=wn*wn;
den=[
www.eeworm.com/read/447444/7551091
m exp4_15.m
% exp4_15.m
clear
close all
clc
% 状态空间系统描述
a=[-0.6 -1.04 0 0;1.04 0 0 0;0 0.96 -0.7 -0.32;
0 0 0.32 0];
b=[1 0 0 0]';
c=[0 0 0 0.32];
d=0;
% 图1绘制波特图
figure(1)
bode(a,b,c,d);
% 图2绘制幅相曲线