代码搜索:reverse

找到约 4,015 项符合「reverse」的源代码

代码结果 4,015
www.eeworm.com/read/281401/9158189

s opgave1.s

! EIGHT BYTE INTEGER POCKET CALCULATOR IN REVERSE POLISH ! This program emulates a stack oriented integer machine in polish notation. ! The central data structure consists of eight byte signed lon
www.eeworm.com/read/181133/9273569

y bis.y

/* Reverse polish notation calculator. */ %{ #define YYSTYPE double #include #include %} %token NUM %% /* Grammar rules and actions follow */ input: /* empty */
www.eeworm.com/read/375212/9369139

m evolvfa.m

function [egf,egr] = evolvfa(xdat,plot,tdat); %EVOLVFA performs forward and reverse evolving factor analysis. % EVOLVFA calculates the eigenvalues of sub-matrices of (xdat) % and returns results of
www.eeworm.com/read/374163/9419094

cal readme.cal

The cal(1) date routines were written from scratch, basically from first principles. The algorithm for calculating the day of week from any Gregorian date was "reverse engineered". This was necessar
www.eeworm.com/read/279234/10452488

pl fig04_17.pl

#!/usr/bin/perl # Fig. 4.17: fig04_17.pl # Demonstrates hash functions keys, values, each and reverse. %presidents = ( George => "Washington", Abe => "Lincoln",
www.eeworm.com/read/468568/6993145

m image.m

% images.m loads and displays two Matlab images. It shows how to do simple % modifications such as brightening, reverse video, superimposition, % flipping, and blurring. It also makes a graph of the
www.eeworm.com/read/461264/7230675

pro irafwrt.pro

pro irafwrt, image, hd, filename, PIXDIR = pixdir ;+ ; NAME: ; IRAFWRT ; PURPOSE: ; Write IDL data in IRAF (OIF) format (.imh and .pix files). ; EXPLANATION: ; Does the reverse of IRAFRD.
www.eeworm.com/read/459540/7274070

m action.m

function [NewEvents] = action(event, log_file) % debug: % TTL is determined at network layer only % one way transmission received, reverse transmission fails, why? % mainly because randomnes
www.eeworm.com/read/458682/7291479

sh revposparams.sh

#!/bin/bash # revposparams.sh: Reverse positional parameters. # Script by Dan Jacobson, with stylistic revisions by document author. set a\ b c d\ e; # ^ ^ Spaces escaped # ^ ^
www.eeworm.com/read/305602/13764776

java vectoriterator.java

/** * A vector iterator to print data reverse */ import java.io.*; import java.util.*; public class VectorIterator implements Iterator { private Vector data = new Vector(); private