• 大小: 46KB
    文件类型: .zip
    金币: 1
    下载: 0 次
    发布日期: 2021-05-16
  • 语言: 其他
  • 标签: 积分  

资源简介

计算方法教程 凌永祥 第四章第三题复化simpson公式求积分

资源截图

代码片段和文件信息

//
//  baseData.m
//  Chapter3-1
//
//  Created by 徐云 on 14-11-4.
//  Copyright (c) 2014年 徐云. All rights reserved.
//

#import “baseData.h“

@implementation baseData

-(id) init
{
    self=[super init];
    if (self) {
        if (!array) {
            array=[[NSMutableArray alloc] init];
            }
    }
    return self;
}

-(int) legth
{
    return (int)[array count]/2;
}

-(void) addItemX:(double)x andY:(double)y
{
    NSNumber *_x=[[NSNumber alloc] initWithDouble:x];
    NSNumber *_y=[[NSNumber alloc] initWithDouble:y];
    [array addobject:_x];
    [array addobject:_y];
}

-(double) XatIndex:(int) index
{
    return [[array objectAtIndex:2*index] doubleValue];
}

-(double) YatIndex:(int) index
{
    return [[array objectAtIndex:2*index+1] doubleValue];
}

-(void) sort
{
    //sort the array
}

@end

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     目录           0  2014-11-11 19:31  Chapter4-3\
     文件        8196  2015-02-14 15:03  Chapter4-3\.DS_Store
     目录           0  2015-03-12 18:26  __MACOSX\
     目录           0  2015-03-12 18:26  __MACOSX\Chapter4-3\
     文件         120  2015-02-14 15:03  __MACOSX\Chapter4-3\._.DS_Store
     目录           0  2014-12-20 17:35  Chapter4-3\Chapter4-3\
     文件        6148  2014-11-11 19:42  Chapter4-3\Chapter4-3\.DS_Store
     目录           0  2015-03-12 18:26  __MACOSX\Chapter4-3\Chapter4-3\
     文件         120  2014-11-11 19:42  __MACOSX\Chapter4-3\Chapter4-3\._.DS_Store
     文件         388  2014-11-04 22:16  Chapter4-3\Chapter4-3\baseData.h
     文件         171  2014-11-04 22:16  __MACOSX\Chapter4-3\Chapter4-3\._baseData.h
     文件         828  2014-11-04 22:16  Chapter4-3\Chapter4-3\baseData.m
     文件         171  2014-11-04 22:16  __MACOSX\Chapter4-3\Chapter4-3\._baseData.m
     文件         161  2014-11-07 20:02  Chapter4-3\Chapter4-3\Chapter4-3-Prefix.pch
     文件         171  2014-11-07 20:02  __MACOSX\Chapter4-3\Chapter4-3\._Chapter4-3-Prefix.pch
     文件        3126  2014-11-07 20:02  Chapter4-3\Chapter4-3\Chapter4_3.1
     文件         171  2014-11-07 20:02  __MACOSX\Chapter4-3\Chapter4-3\._Chapter4_3.1
     文件         339  2014-11-11 20:57  Chapter4-3\Chapter4-3\gauss.h
     文件         171  2014-11-11 20:57  __MACOSX\Chapter4-3\Chapter4-3\._gauss.h
     文件        1833  2014-09-23 15:56  Chapter4-3\Chapter4-3\gauss.m
     文件         171  2014-09-23 15:56  __MACOSX\Chapter4-3\Chapter4-3\._gauss.m
     文件         766  2014-11-07 19:11  Chapter4-3\Chapter4-3\Interpolation.h
     文件         171  2014-11-07 19:11  __MACOSX\Chapter4-3\Chapter4-3\._Interpolation.h
     文件        5707  2014-11-11 21:15  Chapter4-3\Chapter4-3\Interpolation.m
     文件         171  2014-11-11 21:15  __MACOSX\Chapter4-3\Chapter4-3\._Interpolation.m
     文件        3019  2014-12-20 17:35  Chapter4-3\Chapter4-3\main.m
     文件         171  2014-12-20 17:35  __MACOSX\Chapter4-3\Chapter4-3\._main.m
     文件          32  2014-09-22 15:33  Chapter4-3\Chapter4-3\matrix
     文件         612  2014-10-28 20:12  Chapter4-3\Chapter4-3\Matrix.h
     文件         171  2014-10-28 20:12  __MACOSX\Chapter4-3\Chapter4-3\._Matrix.h
     文件        1874  2014-11-07 19:43  Chapter4-3\Chapter4-3\Matrix.m
............此处省略27个文件信息

评论

共有 条评论