代码搜索:methods
找到约 10,000 项符合「methods」的源代码
代码结果 10,000
www.eeworm.com/read/222288/14698027
m diffnew.m
function [A,df]=diffnew(X,Y)
%Input - X is the 1xn abscissa vector
% - Y is the 1xn ordinate vector
%Output - A is the 1xn vector containing the coefficients of the Nth
%
www.eeworm.com/read/222288/14698044
m jacobi1.m
function [V,D]=jacobi1(A,epsilon)
%Input - A is an nxn matrix
% - epsilon the is tolerance
%Output - V is the nxn matrix of eigenvectors
% - D is the diagonal nxn matrix of e
www.eeworm.com/read/221024/14772882
html http:^^www.cs.washington.edu^education^courses^341^spring96^tests^smalltalk^solution.html
Date: Wed, 08 Jan 1997 21:25:11 GMT
Server: NCSA/1.4.2
Content-type: text/html
Smalltalk quiz sample solution
For many of these questions, there were
www.eeworm.com/read/220998/14780513
txt hour20_3.txt
There is no real "solution" to this exercise...
The objects behave in a similar manner but the standard library has
many more operators, methods, and therefore capabilities!
www.eeworm.com/read/120586/14798248
h worldmodel.h
/*
Copyright (c) 2000-2003, Jelle Kok, University of Amsterdam
All rights reserved.
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the fo
www.eeworm.com/read/220115/14852413
java accountiteratorpoa.java
package Bank;
/**
*
* IDL Source "D:/exp/NewWork/Exp6/src/Bank.idl"
* IDL Name ::Bank::AccountIterator
* Repository Id IDL:Bank/AccountItera
www.eeworm.com/read/220115/14852417
java accountpoa.java
package Bank;
/**
*
* IDL Source "D:/exp/NewWork/Exp6/src/Bank.idl"
* IDL Name ::Bank::Account
* Repository Id IDL:Bank/Account:1.0
*
www.eeworm.com/read/220115/14852419
java accountmanagerpoa.java
package Bank;
/**
*
* IDL Source "D:/exp/NewWork/Exp6/src/Bank.idl"
* IDL Name ::Bank::AccountManager
* Repository Id IDL:Bank/AccountManage
www.eeworm.com/read/219532/14876820
js testingcase02.js
//*****************************************************************************
// A Practical Guide to Script-Driven Software Development
// Author: Qiming Lu Date: 5/1/2006
www.eeworm.com/read/118155/14885276
py synchronization.py
#: util:Synchronization.py
'''Simple emulation of Java's 'synchronized'
keyword, from Peter Norvig.'''
import threading
def synchronized(method):
def f(*args):
self = args[0]
self.m