{{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中的数学软件。全书共分10章,内容包括MATLAB基础知识,符号运算,矩阵与线性代数计算,图形绘制,函数、导数与定积分等的数值计算,常微分方程的数值解,插值与拟合,概率和数理统计,数学规划求解,程序与编程。
《MATLAB基础及数学软件》主要适读于MATLAB编程初学者。
Catalogue

第1章MATLAB基础知识
1.1 MATLAB系统的简单操作
1.1.1 进入系统
1.1.2 退出系统
1.1.3 初识M文件
1.2 MATLAB的图形窗口
1.3 MATLAB的帮助系统
1.4 MATLAB的路径查找
1.5 运算符与操作符
1.5.1 算术运算符
1.5.2 关系运算符
1.5.3 逻辑运算符
1.5.4 标点及操作符
1.6 常量与变量
1.6.1 常量
1.6.2 变量
1.7 数值与数组
1.7.1 数值
1.7.2 数组
1.8 字符数组(即字符串)
1.8.1 字符串的连接
1.8.2 字符串的替换
1.8.3 字符串的求值
1.8.4 数值与字符串之间的转换
1.9 函数与表达式
1.9.1 数学函数
1.9.2 系统运算与操作函数
1.9.3 表达式
1.10 函数文件与文本文件
1.10.1 函数文件(简称函数)
1.10.2 文本文件(又称脚本文件或命令式文件)
1.10.3 子函数
习题一

第2章 符号运算
2.1 符号对象的生成
2.1.1 符号变量的生成
2.1.2 符号表达式的生成
2.2 符号形式与数值形式之间的转换
2.2.1 将符号形式转换为数值形式
2.2.2 将数值形式转换为符号形式
2.3 符号表达式的变换与化简
2.4 复合函数与反函数的运算
2.4.1 复合函数
2.4.2 反函数
2.5 函数的极限、导数与积分
2.5.1 函数的极限
2.5.2 符号求导
2.5.3 不定积分
2.5.4 定积分
2.6 符号求和与Tavlor展开
2.6.1 符号求和
2.6.2 Tavlor展开
2.7 方程求根(精确根)
2.8 常微分方程的符号解
习题二

第3章 矩阵与线性代数计算
3.1 矩阵的定义
3.2 矩阵的生成
3.2.1 生成的规则
3.2.2 生成的方式
3.3 矩阵的取块
3.4 矩阵的运算
3.4.1 矩阵的行列式与转置阵
3.4.2 矩阵的加、减、乘与乘方运算
3.4.3 矩阵的求逆与除法运算
3.4.4 矩阵的秩与奇异值
3.4.5 矩阵的范数与条件数
3.5 矩阵的特征值与特征向量
3.6 矩阵的分解与广义逆阵
3.6.1 广义逆阵
3.6.2 LU分解
3.6.3 Clloleskv分解
3.6.4 QR分解
3.6.5 奇异值分解
3.6.6 Schur分解
3.7 线性方程组求解
习题三

第4章 图形绘制
4.1 曲线与曲面的表示法
4.1.1 平面曲线表示法
4.1.2 空间曲线表示法
4.1.3 曲面表示法
4.2 曲线绘制法
4.2.1 plot函数
4.2.2 ezplot函数
4.2.3 polar函数
4.2.4 plot3函数
4.3 对曲线的进一步处理
4.3.1 平面曲线的标注
4.3.2 坐标轴与边框的控制
4.3.3 窗口的分割
4.4 曲面绘制法
4.4.1 曲面绘制函数
4.4.2 曲面的放大、缩小、旋转与打印
4.4.3 等高线的绘制法
4.4.4 等高线及其标注
4.4.5 曲面的颜色与光照
习题四

第5章 函数、导数与定积分等的数值计算
5.1 函数值的计算
5.2 多项式的计算
5.3 导数的数值计算
5.4 定积分的数值计算
5.5 二重积分的数值计算
5.6 非线性方程(组)的数值解
5.7 级数的数值和
习题五

第6章 常微分方程的数值解
6.1 将高阶方程转化为一阶方程组
6.2 建立相应的函数文件
6.3 调用求解函数
6.4 应用举例
习题六

第7章 插值与拟合
7.1 一元插值
7.2 一元拟合
7.3 二元有序点上的插值
7.4 二元散乱点上的插值
习题七

第8章 概率和数理统计
8.1 概率分布函数及其密度函数
8.1.1 随机变量的概率密度函数
8.1.2 应用举例
8.1.3 随机变量的分布函数及分位数函数
8.1.4 应用举例
8.1.5 随机数发生函数
8.2 随机变量的数字特征及其样本数字特征
8.2.1 随机变量的数学期望、方差、协方差及相关系数
8.2.2 样本的数字特征(表8.4 )
8.3 参数估计
8.4 假设检验
8.4.1 参数假设检验
8.4.2 非参数假设检验
8.4.3 分布拟合检验
8.5 线性模型
8.5.1 方差分析
8.5.2 线性回归分析
8.5.3 非线性回归
习题八

第9章 数学规划求解
9.1 数学规划概念简介
9.2 线性规划
9.2.1 线性规划的基本模型
9.2.2 调用格式
9.2.3 应用举例
9.3 二次规划
9.3.1 基本模型
9.3.2 调用格式
9.3.3 应用举例
9.4 无约束非线性规划
9.4.1 基本模型
9.4.2 调用格式
9.4.3 应用举例
9.5 有约束非线性规划
9.5.1 基本模型
9.5.2 调用格式
9.5.3 应用举例
9.6 极小极大化问题
9.6.1 基本模型
9.6.2 调用格式
9.7 多目标规划
9.7.1 基本模型
9.7.2 主要方法
习题九

第10章 程序与编程
10.1 指定次数重复循环语句
10.2 不定次数重复循环语句
10.3 条件转移语句
10.4 开关切换语句
10.5 其他语句
10.6 综合举例
习题十

附录
附录1 常用符号与常数
附录2 常用数学函数
附录3 常用系统操作与运算函数
参考文献

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