代码搜索结果
找到约 10,000 项符合
N 的代码
n2to10.m
%将2进制数转换为10进制数
function x=n2to10(s);
bn=size(s,2);
x=s(bn);
for i=1:bn-1
x=x+s(bn-i)*power(2,i);
end
i18n.h
/* Copyright (C) 2005 Thorsten Kukuk
Author: Thorsten Kukuk
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public
two2n.m
fu<mark>n</mark>ctio<mark>n</mark> [I<mark>n</mark>dices<mark>N</mark>]=Two2<mark>N</mark>(DimX,I<mark>n</mark>dices2);
%TWO2<mark>N</mark> Co<mark>n</mark>versio<mark>n</mark> of i<mark>n</mark>dices betwee<mark>n</mark> u<mark>n</mark>foldi<mark>n</mark>gs a<mark>n</mark>d <mark>N</mark>-way arrays
%
%
% fu<mark>n</mark>ctio<mark>n</mark> [I<mark>n</mark>dices<mark>N</mark>]=Two2<mark>N</mark>(D ...
n_simp2.m
% function y=n_simp2(x)
%
% Simplifies strings from tree_ga2 etc.
%
% Input
% x - population matrix
% Output
% y - simplified population martrix
function y_pop=n_simp2(x_pop)
n_simp2.m
% function y=n_simp2(x)
%
% Simplifies strings from tree_ga2 etc.
%
% Input
% x - population matrix
% Output
% y - simplified population martrix
%
% Author Date