代码搜索:same
找到约 10,000 项符合「same」的源代码
代码结果 10,000
www.eeworm.com/read/184304/9110821
m exm2_f.m
function S=exm2_f(A)
%exm2_f.m
[m,n]=size(A);
if m~=n
error('输入矩阵应是方阵!');
end;
e=eig(A);
%检查输入矩阵的特征值是否各异
same=0;
for i=1:m-1
for j=(i+1):m
if e(j)==e(i)
same=1;
e
www.eeworm.com/read/181987/9222706
m exm2_f.m
function S=exm2_f(A)
[m,n]=size(A);
if m~=n
error('输入矩阵应是方阵!');
end;
e=eig(A);
%检查输入矩阵的特征值是否各异
same=0;
for i=1:m-1
for j=(i+1):m
if e(j)==e(i)
same=1;
end
end
www.eeworm.com/read/373232/9468239
txt read me.txt
include both the figure file &.mfile in same directory &then run the m file
www.eeworm.com/read/372550/9503998
m distchpf.m
function d=distchpf(pf1,pf2,mode)
%DISTCHPF calculates the cosh spectral distance between power spectra D=(PF1,PF2,MODE)
%
% Inputs: PF1,PF2 Power spectra to be compared. Each row represents a
www.eeworm.com/read/366542/9809772
pad test.pad
Hi
This is a Test Scratchpad Text file.
Remember only small files can be loaded and edited ..
But u CAN ENCRYPT AND DECRYPT VERY HUHE FILES ALSO .
This file has been Encryp
www.eeworm.com/read/366542/9809783
txt test.txt
Hi
This is a Test Scratchpad Text file.
Remember only small files can be loaded and edited ..
But u CAN ENCRYPT AND DECRYPT VERY HUHE FILES ALSO .
This file has been Encryp
www.eeworm.com/read/365161/9876614
m distchpf.m
function d=distchpf(pf1,pf2,mode)
%DISTCHPF calculates the cosh spectral distance between power spectra D=(PF1,PF2,MODE)
%
% Inputs: PF1,PF2 Power spectra to be compared. Each row represents a
www.eeworm.com/read/167987/9942730
greet
#!/bin/sh
# Script name: greet
for name in $* # same as for name in $@
do
echo Hi $name
done
www.eeworm.com/read/165898/10047275
m exm2_f.m
function S = exm2_f(A)
[m,n] = size(A);
if m ~= n
error('输入矩阵应是方阵');
end
e = eig(A);
%检查输入矩阵的特征值是否各异
same = 0;
for i = 1:m-1
for j = (i+1):m
if e(j) == e(i)
same = 1
www.eeworm.com/read/161256/10432108
m exm2_f.m
function S=exm2_f(A)
[m,n]=size(A);
if m~=n
error('输入矩阵应是方阵!');
end;
e=eig(A);
%检查输入矩阵的特征值是否各异
same=0;
for i=1:m-1
for j=(i+1):m
if e(j)==e(i)
same=1;
end
end