matlab内点法代码使用单纯形法和内点法的线性优化 单纯形法 两阶段单纯形法的 Matlab 实现,使用 Bland 法则寻找枢轴。 内点法 用于线性优化的 INP 指令的 Matlab 实现 用法 代码描述和使用这两种方法的例子请参考description.pdf 。
2021-10-09 11:10:02 313KB 系统开源
1
Hundreds of coll
2021-10-08 13:00:58 60.94MB Mathmatics Linear Algeb
1
Basics of Linear Algebra for Machine Learning: Discover the Mathematical Language of Data in Python By 作者: Jason Brownlee Pub Date: 2018 ISBN: n/a Pages: 212 Language: English Format: PDF Linear algebra is a pillar of machine learning. You cannot develop a deep understanding and application of machine learning without it. In this new laser-focused Ebook written in the friendly Machine Learning Mastery style that you’re used to, you will finally cut through the equations, Greek letters, and confusion, and discover the topics in linear algebra that you need to know. Using clear explanations, standard Python libraries, and step-by-step tutorial lessons, you will discover what linear algebra is, the importance of linear algebra to machine learning, vector, and matrix operations, matrix factorization, principal component analysis, and much more. This book was designed to be a crash course in linear algebra for machine learning practitioners. Ideally, those with a background as a developer. This book was designed around major data structures, operations, and techniques in linear algebra that are directly relevant to machine learning algorithms. There are a lot of things you could learn about linear algebra, from theory to abstract concepts to APIs. My goal is to take you straight to developing an intuition for the elements you must understand with laser-focused tutorials. I designed the tutorials to focus on how to get things done with linear algebra. They give you the tools to both rapidly understand and apply each technique or operation. Each tutorial is designed to take you about one hour to read through and complete, excluding the extensions and further reading. You can choose to work through the lessons one per day, one per week, or at your own pace. I think momentum is critically important, and this book is intended to be read and used, not to sit idle. I would recommend picking a schedule and sticking to it. The tutorials are divided into five parts: Foundation. D
2021-10-07 19:01:35 1.19MB Mathematics
1
著名在线课程的配套教材,亚马逊同类书籍销量第一
2021-10-07 09:19:38 8.56MB 线性代数 算法
1
一维轴对称结构单元有限元法程序,可以在PC上5秒内求解10万自由度的有限元法问题。
2021-10-06 10:00:11 1KB 一维轴对称单元稀疏矩阵存储
This top-selling, theorem-proof book presents a careful treatment of the principle topics of linear algebra, and illustrates the power of the subject through a variety of applications. It emphasizes the symbiotic relationship between linear transformations and matrices, but states theorems in the more general infinite-dimensional case where appropriate. Chapter topics cover vector spaces, linear transformations and matrices, elementary matrix operations and systems of linear equations, determinants, diagonalization, inner product spaces, and canonical forms. For statisticians and engineers.
2021-10-05 14:30:43 3.42MB linear algeb
1
linear system theory and design 3rd edition by Chen-Tsong
2021-10-04 14:21:41 9.64MB linear system
1
Introduction to Applied Linear Algebra(线性代数应用) Stephen Boyd Department of Electrical Engineering Stanford University Lieven Vandenberghe Department of Electrical and Computer Engineering University of California, Los Angeles
2021-10-02 15:15:16 6.82MB Introd Stephe 线性代数及其 线性代数
1
公共的抽象基类 import numpy as np from abc import ABCMeta, abstractmethod class LinearModel(metaclass=ABCMeta): """ Abstract base class of Linear Model. """ def __init__(self): # Before fit or predict, please transform samples' mean to 0, var to 1. self.scaler = StandardScaler() @abstractmethod
2021-10-01 09:33:34 179KB ar AS id
1