代码搜索:multi-dimensional
找到约 164 项符合「multi-dimensional」的源代码
代码结果 164
www.eeworm.com/read/200886/15420675
m maxx.m
% function result = maxx(xx)
%
% Calculate the max over all dimensions of a
% multi-dimensional table.
function result = maxx(xx)
numDims=length(size(xx));
cmdF='result=';
cmdB='';
for dd=1:numDims
www.eeworm.com/read/359212/10161028
m istretch.m
%ISTRETCH Image linear normalization
%
% g = istretch(image)
% g = istretch(image, newmax)
%
% Return a normalized image in which all pixels lie in the range
% 0 to 1, or 0 to newmax.
%
%
% Copyright
www.eeworm.com/read/200388/15434292
m istretch.m
%ISTRETCH Image linear normalization
%
% g = istretch(image)
% g = istretch(image, newmax)
%
% Return a normalized image in which all pixels lie in the range
% 0 to 1, or 0 to newmax.
%
%
% Copyright
www.eeworm.com/read/458682/7291644
sh ex78.sh
#!/bin/bash
# Indirect variable referencing.
# This has a few of the attributes of references in C++.
a=letter_of_alphabet
letter_of_alphabet=z
echo "a = $a" # Direct reference.
echo "N
www.eeworm.com/read/347945/11624586
m display.m
function F = display(X)
% DISPLAY Overloaded
% Author Johan L鰂berg
% $Id: display.m,v 1.2 2006/05/17 13:44:06 joloef Exp $
d = X.dim;
info = num2str(d(1));
for i = 2:length(d)
info = [i
www.eeworm.com/read/339483/12231359
sh ex78.sh
#!/bin/bash
# Indirect variable referencing.
# This has a few of the attributes of references in C++.
a=letter_of_alphabet
letter_of_alphabet=z
echo "a = $a" # Direct reference.
echo "N
www.eeworm.com/read/193277/8242784
m display.m
function F = display(X)
% DISPLAY Overloaded
% Author Johan L鰂berg
% $Id: display.m,v 1.2 2006/05/17 13:44:06 joloef Exp $
d = X.dim;
info = num2str(d(1));
for i = 2:length(d)
info = [i
www.eeworm.com/read/487590/6506033
vhd t14.vhd
--
-- This file tests support for Multi-dimensional arrays (two dimensions).
--
entity TEST is
port( A,B,C,D : in bit;
Z : out bit);
end TEST;
architecture T14 of TEST is
type TWO_DIM_A