代码搜索结果

找到约 10,000 项符合 6 的代码

c6-6.cpp

#include using namespace std; int main() {void select_sort(int *p,int n); //函数声明 int a[10],i; double c=3.6,*q=&c; cout

fig6_6.m

% Example 6.3: Optimal input design % Section 6.3.2, Figure 6.6 % Boyd & Vandenberghe "Convex Optimization" % Original by Lieven Vandenberghe % Adapted for CVX by Joelle Skaf - 09/26/05 % % Consider a

example6_6.res

!UI对话框示例程序资源文件:Example6_6.res (Dialog Example6_6 (Components !对话框元件声明 (SubLayout Layout1) (PushButton Cancel) (Separator

example6_6.res

!UI对话框示例程序资源文件:Example6_6.res (Dialog Example6_6 (Components !对话框元件声明 (SubLayout Layout1) (PushButton Cancel) (Separator

sample6_6.java

/* * 示例程序Sample6_6: Interpolation类的连分式等距插值 */ package javaalgorithm.sample; import javaalgorithm.algorithm.Interpolation; public class Sample6_6 { public static void main(String[] args)

ex6_6.m

% EX6_6.M Taylor series example % Calculate error in Taylor series expansion (6 terms) of exp(x) format long x=1.0 yexact=exp(1) nfact=5*4*3*2*1; yseries=1+x+(x^2)/2+(x^3)/(3*2)+(x^4)/(4*3*2) +(x^5)/(