代码搜索:Variable
找到约 10,000 项符合「Variable」的源代码
代码结果 10,000
www.eeworm.com/read/340289/12167485
asm prog11.asm
; PROG11 - Stack Operations
;
; This Application uses Simulator to Demonstrate how the 8051's
; Stack can be used and some pitfalls to watch out for.
;
; This program will run in the UMPS si
www.eeworm.com/read/340289/12167537
asm prog17.asm
; PROG17 - Control Store Tables
;
; This Application initializes the "Array" Variable of Creates a Variable Array in the Scratchpad RAM and then
; accesses it with reading and writing.
;
; T
www.eeworm.com/read/253950/12174169
htm demev1.htm
Netlab Reference Manual demev1
demev1
Purpose
Demonstrate Bayesian regression for the MLP.
Synopsis
demev1
www.eeworm.com/read/151305/12220499
vhd 10_bit_to_int.vhd
function bit_to_int (in1:bit_vector) return integer is
ALIAS v1: BIT_VECTOR(in1'LENGTH-1 DOWNTO 0) IS in1;
variable inpv : bit_vector(in1'LENGTH-1 DOWNTO 0 );
variable SUM: integer
www.eeworm.com/read/339483/12231371
sh ex10.sh
#!/bin/bash
# Tip:
# If you're unsure of how a certain condition would evaluate,
#+ test it in an if-test.
echo
echo "Testing \"0\""
if [ 0 ] # zero
then
echo "0 is true."
else
echo "0 i
www.eeworm.com/read/339483/12231503
sh reply.sh
#!/bin/bash
# reply.sh
# REPLY is the default value for a 'read' command.
echo
echo -n "What is your favorite vegetable? "
read
echo "Your favorite vegetable is $REPLY."
# REPLY holds the value of
www.eeworm.com/read/150983/12241231
h initaic10.h
; THIS PROGRAM IS PROVIDED "AS IS". TI MAKES NO WARRANTIES OR
; REPRESENTATIONS, EITHER EXPRESS, IMPLIED OR STATUTORY,
; INCLUDING ANY IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS
; FOR A PARTI
www.eeworm.com/read/150905/12250363
htm demev1.htm
Netlab Reference Manual demev1
demev1
Purpose
Demonstrate Bayesian regression for the MLP.
Synopsis
demev1
www.eeworm.com/read/251972/12308160
cpp inverse.cpp
// inverse.cpp : Defines the entry point for the console application.
//
#include "stdafx.h"
int euclid(int f,int d)
{ //calclate gcd(f,d),note gcd(f,d)=gcd(|f|,|d|)
//assume f is larger t