代码搜索结果
找到约 10,000 项符合
4 的代码
4-4.m
clear
x=[0.5 1 1.5 2 2.5 3];
y=[1.75 2.45 3.81 4.8 8 8.6];
[k,b]=linefit(x,y)
y1=polyval([k,b],x);
plot(x,y1);
hold on
plot(x,y,'*')
4_4.m
x=linspace(0,2*pi,101);
y=cos(x).*(0.5+3*sin(x)./(1+x.^2))
plot(x,y);
4_4.cpp
#include
void main()
{
for(int i=1; i
4_4.c
/* ======================================== */
/* 程式实例: 4_4.c */
/* 环状双向链结串列的应用 */
/* ======================================== */
#include
st