{{sellerTotalView > 1 ? __("sellers", {number: sellerTotalView}) : __("seller", {number: sellerTotalView}) }}, {{numTotalView > 1 ? __("items", {number: numTotalView}) : __("item", {number: numTotalView}) }}
free FREE

Change Your Zip Code

Inventory information and delivery speeds may vary for different locations.

Location History

{{email ? __('Got it!') : __('Restock Alert')}}

We will notify you by email when the item back in stock.

Cancel
Yami

Jingdong book

实战MATLAB之文件与数据接口技术

{{buttonTypePin == 3 ? __("Scan to view more PinGo") : __("Scan to start")}}

实战MATLAB之文件与数据接口技术

{{__(":people-members", {'people': item.limit_people_count})}} {{ itemCurrency }}{{ item.valid_price }} {{ itemCurrency }}{{ item.invalid_price }} {{ itemDiscount }}
Ends in
{{ itemCurrency }}{{ item.valid_price }}
{{ itemCurrency }}{{ priceFormat(item.valid_price / item.bundle_specification) }}/{{ item.unit }}
{{ itemDiscount }}
{{ itemCurrency }}{{ item.valid_price }} {{ itemCurrency }}{{ priceFormat(item.valid_price / item.bundle_specification) }}/{{ item.unit }} {{ itemCurrency }}{{ item.invalid_price }} {{itemDiscount}}
{{ itemCurrency }}{{ item.valid_price }}
Sale ends in
Sale will starts after Sale ends in
{{ getSeckillDesc(item.seckill_data) }}
{{ __( "Pay with Gift Card to get sale price: :itemCurrency:price", { 'itemCurrency' : itemCurrency, 'price' : (item.giftcard_price ? priceFormat(item.giftcard_price) : '0.00') } ) }} ({{ itemCurrency }}{{ priceFormat(item.giftcard_price / item.bundle_specification) }}/{{ item.unit }}) Details
Best before

Currently unavailable.

We don't know when or if this item will be back in stock.

Unavailable in your area.
Sold Out

Details

Full product details
Content Description

《实战MATLAB之文件与数据接口技术》(作者江泽林、刘维)系统介绍了在MATLAB环境下通过M语言、c/c++语言、动态链接库、COM组件等方法操作文件、串口、网络接口和采集卡等常见的文件与数据接口的技术和方法。主要内容包括:MATLAB程序设计基础,MAT文件的操作方法,MATLAB环境下文本文件操作,MATLAB环境下二进制数据文件操作,MATLAB环境下Excel和Word文件操作,MATLAB环境下内存映射文件操作,MATLAB中调用外部程序操作文件,MATLAB环境下串口操作,MATLAB环境下网络接口操作,以及使用MATLAB进行数据采集和输出等。
出版社网站的下载中心和MATLAB中文论坛中包含了书中所列的主要程序代码,便于读者学习和研究。
《实战MATLAB之文件与数据接口技术》可作为本科生、研究生学习MATLAB的参考书籍,同时对于使用MATLAB的科研人员和工程技术人员也具有较高的参考价值。

Catalogue

第1章 文件与数据接口基础
1.1 文件
1.2 数据接口
1.3 MATLAB文件和数据接口操作思路
1.4 MATLAB支持的数据文件格式
1.5 MATLAB支持的数据接口类型
第2章 MATLAB程序设计基础
第3章 MATLAB环境下操作MAT文件
第4章 MATLAB环境下操作文本文件
第5章 MATLAB环境下操作二进制数据文件
第6章 MATLAB环境下操作Excel和Word文件
第7章 MATLAB内存映射文件
第8章 MATLAB中调用外部程序操作文件
第9章 MATLAB环境下操作串口
第10章 MATLAB环境下操作网络接口
第11章 MATLAB数据采集和输出
附录
参考文献

Book Abstract

第1章 文件与数据接口基础
MATLAB具有强大的数据处理和数据显示功能,数据是MATLAB操作的主要对象。在MATLAB程序中,如何获取数据是一个重要的问题。一般来说,获取数据的方式有两种:一种是通过文件获取数据;另一种是通过相关设备获取数据。通过文件获取数据的方式即读取各种格式的文件得到文件中存储的数据;通过设备获取数据的方式与通过文件的类似,但操作方法不同,比如通过串口、网口、采集设备等方式获取数据。为了叙述方便,在后续章节中,分别采用文件和数据接口来标志上述两种获取数据的方式。
本章首先介绍文件和数据接口的基本概念,其次给出MATLAB对文件和数据接口进行操作的基本思路,最后给出MATLAB支持的数据文件格式和数据接口类型。
1.1 文件
文件是一个逻辑概念,一个文件对应存储设备中的一系列数据块,这里的存储设备可以是硬盘、光盘、软盘、磁带等。一般情况下,操作系统采用统一的接口来操作不同存储设备中的文件。因此,除了存取速度之外,从文件中读取数据一般不需要考虑不同存储设备在硬件层面的差别。对利用MATLAB进行科学计算的工程师和科学家而言,文件的主要用途是存储数据。在操作文件时,最关键的问题有两个:一个是文件中数据的编码方式;另一个是文件中数据的组织结构。
计算机操作中存在一些基本的数据类型,例如8位无符号整型、16位无符号整型、单精度浮点型、双精度浮点型等。如果文件中的数据均以基本类型的形式存在,并且此基本类型用二进制表示,则将此类文件称为二进制文件。由于涉及的基本数据类型较多,而且每种数据类型的字节数不完全相同,因此从二进制文件中读取数据时必须了解文件的结构(至少计算机程序了解文件结构)。假定用户向文件中写入的数据(类型)依次为50(8位有符号整型)、3l000(工6位有符号整型)、123.456(32位单精度浮点型),则写入完成后,文件中对应的二进制数据如图l—l所示(采用十六进制表示)。其中第一个字节。x32表示第一个数据单元(即十进制数50),第二和第三个字节表示第二个数据单元(即十进制数3l000),剩余四个字节表示最后一个数据单元(即十进制数工23.456)。
除了二进制文件之外,另外一种文件类型即文本文件。文本文件中的数据也是以二进制形式存在,但只有一种数据类型即字符类型(单字节或双字节)。
……

Introduction

MATLAB是一款由美国MathW。rkS公司研发的商用数学软件。从1984年首次面向市场推出至今,MATLAB已经发展成为科学研究、高等教育、工程技术等领域最重要的数学软件之一。“数值计算”和“数据可视化”是MATLAB环境提供的最基本且应用最广泛的两类功能。无论是“数值计算”,还是“数据可视化”,数据都是重中之重。在实际工作中,很多MATLAB的使用者都有被“MATLAB环境下数据导入和导出问题”折磨的经历。合理地处理数据导入和导出问题,对提高MATLAB程序的开发效率和执行效率非常重要。
在MATLAB环境下,数据输入和输出一般通过两种方式进行,即文件和数据接口。文件操作的烦琐性在于如何应对纷繁复杂的数据格式。特别是在科学计算领域,数据格式的种类很多,文件结构复杂,在很多情况下都成为制约MATLAB程序效率的一大拦路虎。数据接口虽然大都是标准的,但M语言是解释性语言,在操作串口、网络接口等数据接口时需要利用MATLAB的工具箱或外部扩展。可以看出,MATLAB环境下的文件和数据接口操作具有很强的技巧性。然而,目前很难找到能系统介绍MATLAB环境下文件和数据接口操作的图书,互联网上相关内容繁多,但常常是针对某个具体问题而言的,缺乏系统性、概括性和全面性。高校学生、科研人员在刚开始使用MATLAB操作文件和数据接口时往往不能对症下药,不能迅速找到适合自己的技术和方法。
针对上述问题,笔者结合十多年在一MATLAB环境下软件开发的经捡撰写了这本书,以期系统、全面地介绍在MATLAB环境下对文件和数緩接口进行操作的技术和方法。使用MATLAB经常处理的科学数据,其文件格式复杂多变,既有标准的文件格式(如图像和多媒体文件),更有非标准的文件格式(如用户自己生成或存储的数据文件)。因此,对于MA7LAB使用者而言,关键是选择合适的方法来读/-5不同的文件格式。对于数据接口而言,多数情况下用户选择标准的数据接口,因此重点是通过MA丁LAB内置的工具箱和合理使用外部扩展(如MEX文件、动态链接库等)来对标准数据接口进行操作。
由于文件和数据接口是两类不同的读/-5数据的方式,因此全书按照先对各类文件读/-5进行介绍,再对各类数据接口操作进行介绍的思路进行编排。按照这种思路,全书可以划分为三个部分。
第一部分是基础知识部分,包含第工章和第2章。第工章介绍文件与数据接口的基本概念,给出MA7LAB操作文件和数据接口的基本思路。第2章是MA7LAB程序设计基础,介绍MA7LAB环境、M语言、常用的数据类型、面向对象的程序设计以及数据显示函数等。
第二部分是MA7LAB操作各类文件的方法,包含第3章至第8章。其中第3章介绍MA7LAB操作MAT文件的技术和方法。MA了文件是MA了LAB支持的标准二进制文件,该章给出多种导入、导出MA丁文件的方法,还给出在c/c+十程序中操作MA7文件的方法。第4章介绍MA丁LAB操作文本文件的方法,包括导入文本文件,将数据输出至文本文件,以及文本文件数据与MA7LAB阵列转换等内容。第5章介绍MA7LAB操作二进制文件的方法,包括二进制文件的低级操作函数,以及使用高级函数操作二进制多媒体文件。第6章介绍MA丁LAB操作EXCel文件和Word文件的方法,其中操作Excel文件的方法包括MAT—LAB函数、COM技术,以及MA7LAB提供的一款SpreadsheetLinkEX工具箱。操作Word文件则使用了COM组件技术。第7章介绍MA丁一LAB环境下内存映射文件的读/写,MA7LAB主要利用memmapfile对象来操作内存映射文件。第8章介绍MA丁LAB调用外部程序来操作文件的方法,主要包括三类:通过调用动态链接库、直接调用外部程序,以及调用ActiveX控件等。
……


Specifications

Brand Jingdong book
Brand Origin China

Disclaimer

Product packaging, specifications and price are subject to change without notice. All information about the products on our website is provided for information purposes only. Please always read labels, warnings and directions provided with the product before use.

View Full Terms of Use
Add to favorites
{{ $isZh ? coupon.coupon_name_sub : coupon.coupon_ename_sub | formatCurrency }}
{{__("Buy Directly")}} {{ itemCurrency }}{{ item.directly_price }}
Quantity
{{ quantity }}
{{ instockMsg }}
{{ limitText }}
{{buttonTypePin == 3 ? __("Scan to view more PinGo") : __("Scan to start")}}
Sold by JD@CHINA
Ship to
{{ __("Ship to United States only") }}
Free shipping over 69
Genuine guarantee

Added to Cart

Keep Shopping

More to Consider

{{ item.brand_name }}

{{ item.item_name }}

{{ item.currency }}{{ item.market_price }}

{{ item.currency }}{{ item.unit_price }}

{{ item.currency }}{{ item.unit_price }}

Coupons

{{ coupon.coupon_name_new | formatCurrency }}
Clip Clipped Over
{{ getCouponDescStr(coupon) }}
{{ coupon.use_time_desc }}
Expires soon {{ formatTime(coupon.use_end_time) }}

Share this item with friends

Cancel

Yami Gift Card

Get this exclusive deal when paying with gift card

Terms and Conditions

Gift card deals are special offers for selected products;

The gift card deals will automatically be activated if a customer uses gift card balance at check out and the balance is sufficient to pay for the total price of the shopping cart products with gift card deals;

You will not be able to activate the gift card deals if you choose other payment methods besides gift card. The products will be purchased at their normal prices;

If your account balance is not enough to pay for the products with gift card deals, you can choose to reload your gift card balance by clicking on the Reload button at either shopping cart page or check out page;

Products that have gift card deals can be recognized by a special symbol showing 'GC Deal';

For any additional questions or concerns, please contact our customer service;

Yamibuy reserves the right of final interpretation.

Sold by Yami

Service Guarantee

Yami Free Shipping over $49
Yami Easy Returns
Yami Ships from United States

Shipping

  • United States

    Standard Shipping is $5.99 (Excluding Alaska & Hawaii). Free on orders of $49 or more.

    Local Express is $5.99 (Available in Parts of CA, NJ, MA & PA). Free on orders of $49 or more.

    2-Day Express (Includes Alaska & Hawaii) starts at $19.99.

Return Policy

Yami is committed to provide our customers with a peace of mind when purchasing from us. Most items shipped from Yamibuy.com can be returned within 30 days of receipt of shipment (For Food, Beverages, Snacks, Dry Goods, Health supplements, Fresh Grocery and Perishables Goods, within 7 days of receipt of shipment due to damages or quality issues; To ensure that every customer receives safe and high-quality products, we do not provide refunds or returns for beauty products once they have been opened or used, except in the case of quality issues; Some products may have different policies or requirements associated with them, please see below for products under special categories, or contact Yami Customer Service for further assistance).
Thank you for your understanding and support.

Learn More

Sold by Yami

Terms and Conditions of Yami E-Gift Card

If you choose “Redeem automatically” as your delivery method, your gift card balance will be reload automatically after your order has been processed successfully;

If you choose “Send to Email”as your delivery method, the card number and CVV will be sent to the email address automatically;

Any user can use the card number and CVV to redeem the gift card, please keep your gift card information safely. If you have any trouble receiving email, please contact Yami customer service;

Yami gift card can be used to purchase both Yami owned or Marketplace products;

Yami gift card will never expire;

Yami gift card balance does not have to be used up at once;

All rights reserved by Yami.

Return Policy

Gift card that has already been consumed is non-refundable.

Sold by JD@CHINA

Service Guarantee

Yami Free Shipping over $49
Yami Easy Returns
Yami Ships from United States

Shipping

  • United States

    Standard Shipping is $5.99 (Excluding Alaska & Hawaii). Free on orders of $49 or more.

    Local Express is $5.99 (Available in Parts of CA, NJ, MA & PA). Free on orders of $49 or more.

    2-Day Express (Includes Alaska & Hawaii) starts at $19.99.

Return Policy

You may return product within 30 days upon receiving the product. Items returned must be new in it's original packing, including the original invoice for the purchase. Customer return product at their own expense.

Sold by JD@CHINA

Service Guarantee

Yami Cross-store Free Shipping over $69
Yami 30-days Return

Yami-China FC

Yami has a consolidation warehouse in China which collects multiple sellers’ packages and combines to one order. Our Yami consolidation warehouse will directly ship the packages to your door. Cross-store free shipping over $69.

Return Policy

You may return products within 30 days upon receiving the products. Sellers take responsibilities for any wrong shipment or missing items. Packing needs to be unopened for any other than quality issues return. We promise to pack carefully, but because goods are taking long journey to destinations, simple damages to packaging may occur. Any damages not causing internal goods quality problems are not allowed to return. If you open the package and any quality problem is found, please contact customer service within three days after receipt of goods.

Shipping Information

Yami Consolidation Service Shipping Fee $9.99(Free shipping over $69)

Sellers in China will ship their orders within 1-2 business days once the order is placed. Packages are sent to our consolidation warehouse in China and combined there. Our Yami consolidation warehouse will directly ship the packages to you via UPS. The average time for UPS to ship from China to the United States is about 10 working days and it can be traced using the tracking number. Due to the pandemic, the delivery time may be delayed by about 5 days. The package needs to be signed by the guest. If the receipt is not signed, the customer shall bear the risk of loss of the package.

Sold by JD@CHINA

Service Guarantee

Free shipping over 69
Genuine guarantee

Shipping

Yami Consolidated Shipping $9.99(Free shipping over $69)


Seller will ship the orders within 1-2 business days. The logistics time limit is expected to be 7-15 working days. In case of customs clearance, the delivery time will be extended by 3-7 days. The final receipt date is subject to the information of the postal company.

Yami Points information

All items are excluding from any promotion or points events on Yamibuy.com

Return Policy

You may return product within 30 days upon receiving the product. Items returned must be new in it's original packing, including the original invoice for the purchase. Customer return product at their own expense.

Yami

Download the Yami App

Back Top

Recommended for You

About the brand

Jingdong book

为您推荐

Yami
欣葉
2种选择
欣叶 御大福 芋头麻薯 180g

周销量 600+

$1.66 $1.99 83折
Yami
欣葉
2种选择
欣叶 御大福 芋头麻薯 180g

周销量 600+

$1.66 $1.99 83折
Yami
欣葉
2种选择
欣叶 御大福 芋头麻薯 180g

周销量 600+

$1.66 $1.99 83折
Yami
欣葉
2种选择
欣叶 御大福 芋头麻薯 180g

周销量 600+

$1.66 $1.99 83折
Yami
欣葉
2种选择
欣叶 御大福 芋头麻薯 180g

周销量 600+

$1.66 $1.99 83折
Yami
欣葉
2种选择
欣叶 御大福 芋头麻薯 180g

周销量 600+

$1.66 $1.99 83折

Reviews{{'('+ commentList.posts_count + ')'}}

Have your say. Be the first to help other guests.

Write a review
{{ totalRating }} Write a review
  • {{i}} star

    {{i}} stars

    {{ parseInt(commentRatingList[i]) }}%

Yami Yami
{{ comment.user_name }}

{{ showTranslate(comment) }}Show Less

{{ strLimit(comment,800) }}Show more

Show Original

{{ comment.content }}

Yami
Show All

{{ formatTime(comment.in_dtm) }} VERIFIED PURCHASE {{groupData}}

{{ comment.likes_count }} {{ comment.likes_count }} {{ comment.reply_count }} {{comment.in_user==uid ? __('Delete') : __('Report')}}
Yami Yami
{{ comment.user_name }}

{{ showTranslate(comment) }}Show Less

{{ strLimit(comment,800) }}Show more

Show Original

{{ comment.content }}

Yami
Show All

{{ formatTime(comment.in_dtm) }} VERIFIED PURCHASE {{groupData}}

{{ comment.likes_count }} {{ comment.likes_count }} {{ comment.reply_count }} {{comment.in_user==uid ? __('Delete') : __('Report')}}

No related comment~

Review

Yami Yami

{{ showTranslate(commentDetails) }}Show Less

{{ strLimit(commentDetails,800) }}Show more

Show Original

{{ commentDetails.content }}

Yami
Show All

{{ formatTime(commentDetails.in_dtm) }} VERIFIED PURCHASE {{groupData}}

{{ commentDetails.likes_count }} {{ commentDetails.likes_count }} {{ commentDetails.reply_count }} {{commentDetails.in_user==uid ? __('Delete') : __('Report')}}

Please write at least one word

Comments{{'(' + replyList.length + ')'}}

Yami Yami

{{ showTranslate(reply) }}Show Less

{{ strLimit(reply,800) }}Show more

Show Original

{{ reply.reply_content }}

{{ formatTime(reply.reply_in_dtm) }}

{{ reply.reply_likes_count }} {{ reply.reply_likes_count }} {{ reply.reply_reply_count }} {{reply.reply_in_user==uid ? __('Delete') : __('Report')}}

Please write at least one word

Cancel

That’s all the comments so far!

Write a review
How would you rate this item?

Please add your comment.

  • A nice nickname will make your comments more popular!
  • The nickname in your account will be changed to the same as here.
Thanks for your review
Our community rely on great reviews like yours to find the best of Asia.

Report

If you find this content inappropriate and think it should be removed from the Yami.com site, let us know please.

Cancel

Are you sure to delete your review?

Cancel

You’ve Recently Viewed

About the brand

Jingdong book