Posts Tagged ‘mat-files’
Why Use Object-Oriented Design
April 18th, 2010 No Comments Posted in Documents
Approaches to Writing MATLAB Programs
Creating software applications typically involves designing how to represent the application data and determining how to implement operations performed on that data. Procedural programs pass data to functions, which perform the necessary operations on the data. Object-oriented software encapsulates data and operations in objects that interact with each other via the object’s interface. Read More
Tags: addNode, classes, design, mat-files, matlab, MATLAB Classes, methods, node, Object-Oriented, properties, surf, Unlink
Constructing Sparse Matrices
April 14th, 2010 No Comments Posted in Documents
Creating Sparse Matrices
- Converting Full to Sparse
- Creating Sparse Matrices Directly
- Creating Sparse Matrices from Their Diagonal Elements
MATLAB software never creates sparse matrices automatically. Instead, you must determine if a matrix contains a large enough percentage of zeros to benefit from sparse techniques. Read More
Importing MAT-Files
April 14th, 2010 No Comments Posted in Documents
Viewing the Contents of a MAT-File
MAT-files are binary MATLAB format files that store workspace variables. Read More