代码搜索:singleton
找到约 4,696 项符合「singleton」的源代码
代码结果 4,696
www.eeworm.com/read/104260/6205284
java javacolormodel.java
package kaffe.awt;
import java.awt.image.ColorModel;
/**
* JavaColorModel - This is a ColorModel for Javas own color 8888 ARGB scheme.
* It doesn't make sense to do all the bit shuffling if we jus
www.eeworm.com/read/263879/11338233
m trapz.m
function z = trapz(x,y,dim)
%梯形积分法.适用于数值函数和光滑性不好的函数.
% z=trapz(x,y),x是表示积分区间的离散化向量;
% y是与x同维数的向量,表示被积函数;
% z返回积分的近似值.
%例 计算exp(-x^2)在[-1 1]上的定积分
% clear;
www.eeworm.com/read/406910/11432747
m sortind.m
function ind = sortind(varargin)
% DESCRIPTION ind = sortind(x,[],dim)
% As sort but keeps only index.
% Calculates the index along dimension of the third argument,
% otherwise along the first non
www.eeworm.com/read/406910/11432814
m minind.m
function ind = minind(varargin)
% DESCRIPTION ind = minind(x,[],dim)
% As min, but keeps only index.
% Calculates the index along dimension of the third argument,
% otherwise along the first non-si
www.eeworm.com/read/406910/11432828
m maxind.m
function ind = maxind(varargin)
% DESCRIPTION ind = maxind(x,[],dim)
% As max but keeps only index.
% Calculates the index along dimension of the third argument,
% otherwise along the first non-sin
www.eeworm.com/read/337307/12377632
m trapz.m
function z = trapz(x,y,dim)
%梯形积分法.适用于数值函数和光滑性不好的函数.
% z=trapz(x,y),x是表示积分区间的离散化向量;
% y是与x同维数的向量,表示被积函数;
% z返回积分的近似值.
%例 计算exp(-x^2)在[-1 1]上的定积分
% clear;
www.eeworm.com/read/250225/12423124
m sortind.m
function ind = sortind(varargin)
% DESCRIPTION ind = sortind(x,[],dim)
% As sort but keeps only index.
% Calculates the index along dimension of the third argument,
% otherwise along the first non
www.eeworm.com/read/250225/12423197
m minind.m
function ind = minind(varargin)
% DESCRIPTION ind = minind(x,[],dim)
% As min, but keeps only index.
% Calculates the index along dimension of the third argument,
% otherwise along the first non-si
www.eeworm.com/read/250225/12423224
m maxind.m
function ind = maxind(varargin)
% DESCRIPTION ind = maxind(x,[],dim)
% As max but keeps only index.
% Calculates the index along dimension of the third argument,
% otherwise along the first non-sin
www.eeworm.com/read/130982/14164231
sci squeeze.sci
function [a1]=squeeze(a)
//Removes singleton dimensions of a hypermatrix
s = size(a);
a1 = matrix(a, s(find(s~=1)));