代码搜索结果

找到约 10,000 项符合 Storage 的代码

newmat3.cxx

//$$ newmat3.cxx Matrix get and restore rows and columns // Copyright (C) 1991,2: R B Davies #include "include.h" #include "newmat.h" #include "newmatrc.h" //#define REPORT { sta

newmat9.cxx

//$$ newmat9.cxx Input and output // Copyright (C) 1991,2: R B Davies #define WANT_STREAM #include "include.h" #include "newmat.h" #include "newmatrc.h" #include "newmatio.h"

newmat4.cxx

//$$ newmat4.cxx Constructors, ReDimension, basic utilities // Copyright (C) 1991,2: R B Davies #include "include.h" #include "newmat.h" #include "newmatrc.h" //#define REPORT { sta

ca.dni

[Interrupts] Enabled=1 [MemoryMap] Enabled=0 Base=0 UseAuto=0 TypeViolation=1 UnspecRange=1 ActionState=1 [TraceHelper] Enabled=0 ShowSource=1 [Breakpoints] Count=0 [FET] Extended Clock

stack.java

//: net/mindview/util/Stack.java // Making a stack from a LinkedList. package net.mindview.util; import java.util.LinkedList; public class Stack { private LinkedList storage = new Linke

simplequeue.java

//: generics/SimpleQueue.java // A different kind of container that is Iterable import java.util.*; public class SimpleQueue implements Iterable { private LinkedList storage = new Lin

randomlist.java

//: generics/RandomList.java import java.util.*; public class RandomList { private ArrayList storage = new ArrayList(); private Random rand = new Random(47); public void add(T it

genericcast.java

//: generics/GenericCast.java class FixedSizeStack { private int index = 0; private Object[] storage; public FixedSizeStack(int size) { storage = new Object[size]; } public v

montagekpm2.m

function montageKPM2(data) % data(y,x,b,f) or data(y,x,f) % can be double - uses imagesc to display, not imshow % based on imaqmontage if ndims(data)==3 nr = size(data,1); nc = size(data,2); Npatch

arrayqueue.java

// queue implemented as an array public class ArrayQueue { private int first, last, size; private Object[] storage; public ArrayQueue() { this(100); }