代码搜索:RF
找到约 8,431 项符合「RF」的源代码
代码结果 8,431
www.eeworm.com/read/138165/13254778
pas unit1.pas
unit Unit1;
interface
uses
Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs,
StdCtrls, ComCtrls, ExtCtrls;
type
TfrmMain = class(TForm)
btnView: TButton;
www.eeworm.com/read/138165/13254808
~pas unit1.~pas
unit Unit1;
interface
uses
Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs,
StdCtrls, ComCtrls, ExtCtrls;
type
TfrmMain = class(TForm)
btnView: TButton;
www.eeworm.com/read/322456/13379776
m rfmatrix.m
function [m,mx,my]=rfmatrix(rf,x,y,flagx,flagy)
% rfmatrix - 雨流矩阵评价
%
% function [m,mx,my] = rfmatrix(rf,x,y,flagx,flagy)
%
% Syntax: rfmatrix(rf)
% rfmatrix(rf,x,y)
% rfmatri
www.eeworm.com/read/322456/13379778
m rainflow.m
% RAINFLOW cycle counting.
% RAINFLOW counting function allows you to extract
% cycle from random loading.
%
% SYNTAX
% rf = RAINFLOW(ext)
% rf = RAINFLOW(ext, dt)
% rf = RAINFLOW(ex
www.eeworm.com/read/317596/13501566
makefile
CC=g++
EXEC=missilePro
CFLAGS=-g
OBJ=missilePro.o
${EXEC}:${OBJ}
${CC} ${CFLAGS} -o ${EXEC} ${OBJ}
missilePro.o:missilePro.h missilePro.cpp
${CC} ${CFLAGS} -c missilePro.cpp
.PHONY:clean
clean:
r
www.eeworm.com/read/315789/13536573
txt chap8-4.txt
// 程序8-4
import java.io.*;
public class randFile {
final static int DoubelSize=8; // 定义一个常量
void randomFileTest(String fileName) throws IOException {
// randomFileTe
www.eeworm.com/read/312928/13601163
pas unit1.pas
unit Unit1;
interface
uses
Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs,
StdCtrls, ComCtrls, ExtCtrls;
type
TfrmMain = class(TForm)
btnView: TButton;
www.eeworm.com/read/312610/13607924
txt 例3.5.txt
例3.5转义字符的使用。
main()
{printf(" ab c\t de\rf\tg\n");
printf("h\ti\b\bj k");
}
www.eeworm.com/read/309858/13663631
frm xboutin.frm
VERSION 5.00
Begin VB.Form xboutin
BorderStyle = 4 'Fixed ToolWindow
ClientHeight = 2775
ClientLeft = 45
ClientTop = 270
ClientWidth = 7290
L
www.eeworm.com/read/301701/13852267
txt 利用ramdonaccessfile来实现文件的追加!.txt
作者:jeru
日期:2000-11-29 14:44:48
RamdonAccessFile 是个很好用的类,功能十分强大,可以利用它的
length()和seek()方法来轻松实现文件的追加,相信我下面这个例子是
很容易看懂的,先写入十行,用length()读出长度(以byte为单位),
在用seek()移动到文件末尾,继续添加,最后显示记录。
import java.io.*