代码搜索:Multiple
找到约 9,501 项符合「Multiple」的源代码
代码结果 9,501
www.eeworm.com/read/143003/7144870
def gp.def
NAME gp
DESCRIPTION 'Genetic Programming in C++ Kernal by Adam P.Fraser 1993,1994'
EXETYPE WINDOWS
STUB "winstub.exe"
CODE PRELOAD MOVEABLE DISCARDABLE
DATA PRELOAD FIXED MULTIPLE
HEAPSIZ
www.eeworm.com/read/463280/7184305
plg 14-1.plg
Build target 'Target 1'
compiling 14-1.c...
linking...
*** WARNING L16: UNCALLED SEGMENT, IGNORED FOR OVERLAY PROCESS
SEGMENT: ?PR?READDATA?14_1
*** WARNING L15: MULTIPLE CALL TO SEGMENT
SEGM
www.eeworm.com/read/462042/7211953
txt 代码4-2.txt
x = 0:0.01:20;
y1 = 200*exp(-0.05*x).*sin(x);
y2 = 0.8*exp(-0.5*x).*sin(10*x);
[AX,H1,H2] = plotyy(x,y1,x,y2,'plot');
set(get(AX(1),'Ylabel'),'String','Slow Decay')
set(get(AX(2),'Ylabel'),'St
www.eeworm.com/read/460435/7250595
m addlabels.m
%ADDLABELS Add a new labeling to an existing dataset
%
% [B,LABLISTNUMBER] = ADDLABELS(A,LABELS,LABLISTNAME)
%
% INPUT
% A - Dataset
% LABELS - Vector or character array
www.eeworm.com/read/456781/7339806
h modbusclient.h
#pragma once
#include "ModbusConnection.h"
// Modbus function codes for supported requests (see Modbus Protocol Specification)
#define MODBUS_READ_REGS 3 // Read Multiple Registers
#define
www.eeworm.com/read/455096/7378170
txt version.txt
This is version 1.0a. This version corrected the dirty edges of images whose
dimensions were not mutliples of 8.
Version 1.0 was a fix of the below bug but still had dirty edges in
non-multiple-
www.eeworm.com/read/452695/7436356
c program7_05.c
/* Program 7.5 Arrays and pointers taken further */
#include
int main(void)
{
char multiple[] = "a string";
char *p = multiple;
for(int i = 0 ; i
www.eeworm.com/read/452695/7436362
c program7_06.c
/* Program 7.6 Different types of arrays */
#include
int main(void)
{
long multiple[] = {15L, 25L, 35L, 45L};
long * p = multiple;
for(int i = 0 ; i
www.eeworm.com/read/452695/7436382
c program7_05b.c
/* Program 7.5B Arrays and pointers taken further */
#include
int main(void)
{
char multiple[] = "another string";
printf(" first element: %p\n", multiple);
printf("second el