代码搜索结果
找到约 33,766 项符合
Algorithm 的代码
audiofft.pjt
; Code Composer Project File, Version 2.0 (do not modify or remove this line)
[Project Settings]
ProjectName="useraudio"
ProjectDir="E:\qu\guaxiang\54x_prg\algorithm\exp01_audiofft\"
ProjectType
cc_build_debug.log
---------------------------- audiofft.pjt - Debug ----------------------------
"c:\ti5x\c5400\cgtools\bin\cl500" -g -q -fr"E:/qu/guaxiang/54x_prg/algorithm/exp01_audiofft/Debug" -d"_DEBUG" -v548 -@
index.html
Genetic Algorithm Optimization Toolbox
Genetic Algorithm Optimization Toolbox (GAOT)
GAOT implements simulated evolution i
contents.m
% Genetic Optimization Toolbox
%
% Main interface
% ga.m The Genetic Algorithm
% initialize.m Initialization function Used by ga.m
%
% Operators used during simulated
gaotindex.html
Genetic Algorithm Optimization Toolbox (GAOT)
The following files are in the distribution:
Main interface
ga.m
out3.txt
**** MENU ****
1. Bully's Algorithm
2. Ring Algorithm
3. Exit
Enter your choic
gcd.sh
#!/bin/bash
# gcd.sh: greatest common divisor
# Uses Euclid's algorithm
# The "greatest common divisor" (gcd) of two integers
#+ is the largest integer that will divide both, leaving no rema
primes.sh
#!/bin/bash
# primes.sh: Generate prime numbers, without using arrays.
# Script contributed by Stephane Chazelas.
# This does *not* use the classic "Sieve of Eratosthenes" algorithm,
#+ but instead
fx3n.m
function [f,dfdx] = fx3n(x)
% fx3n Evaluate f(x) = x - x^(1/3) - 2 and dfdx for Newton algorithm
f = x - x.^(1/3) - 2;
dfdx = 1 - (1/3)*x.^(-2/3);
fx3n.m
function [f,dfdx] = fx3n(x)
% fx3n Evaluate f(x) = x - x^(1/3) - 2 and dfdx for Newton algorithm
f = x - x.^(1/3) - 2;
dfdx = 1 - (1/3)*x.^(-2/3);