代码搜索:construct
找到约 6,584 项符合「construct」的源代码
代码结果 6,584
www.eeworm.com/read/458682/7291449
sh c-vars.sh
#!/bin/bash
# Manipulating a variable, C-style, using the ((...)) construct.
echo
(( a = 23 )) # Setting a value, C-style,
#+ with spaces on both sides of the "=".
echo "a (initial
www.eeworm.com/read/458682/7291664
sh escaped.sh
#!/bin/bash
# escaped.sh: escaped characters
echo; echo
# Escaping a newline.
# ------------------
echo ""
echo "This will print
as two lines."
# This will print
# as two lines.
echo "This will p
www.eeworm.com/read/452837/7432405
bak maze.bak
% allow the addition of new paths as they are found.
:-dynamic(path/1).
% data describe movements in maze
move(a,b). move(b,c). move(c,d). move(c,e). move(e,f).
% The simplest path is a singl
www.eeworm.com/read/452837/7432409
plg maze.plg
% allow the addition of new paths as they are found.
:-dynamic(path/1).
% data describe movements in maze
move(a,b). move(b,c). move(c,d). move(c,e). move(e,f).
% The simplest path is a single move
www.eeworm.com/read/446418/7579560
m wspace.m
function w = wspace(t,nt);
% This function constructs a linearly-spaced vector of angular
% frequencies that correspond to the points in an FFT spectrum.
% The second half of the vector is al
www.eeworm.com/read/446416/7579594
m wspace.m
function w = wspace(t,nt);
% This function constructs a linearly-spaced vector of angular
% frequencies that correspond to the points in an FFT spectrum.
% The second half of the vector is al
www.eeworm.com/read/435480/7791270
asv idenmatrix.asv
function [A b]=idenMatrix(y,MOP)
%construct matrix A and b for identification
%y: measured output
%MOP: determin the order of estimated model
%%Ao*y(t)=Co*e(t);MOP=[length(Ao)-1 length(Co)-1];
www.eeworm.com/read/435480/7791273
m idenmatrix.m
function [A b]=idenMatrix(y,MOP)
%construct matrix A and b for identification
%y: measured output
%MOP: determin the order of estimated model
%%Ao*y(t)=Co*e(t);MOP=[length(Ao)-1 length(Co)-1];
www.eeworm.com/read/435150/7796223
h mystring.h
// Exercise 14.3 MyString.h
// Definition of the MyString class representing strings
#ifndef MYSTRING_H
#define MYSTRING_H
namespace mySpace {
class MyString {
public:
MyString();