Tagged: inf

Wireless Engineering with Matlab

If you use Matlab you can reduce development time for Wireless engineering and eliminate design problems early, and streamline testing and verification. What is the Wireless Engineering : Wireless engineering is an engineering subject...

Simulation of a Bouncing Ball

  Figure 1: A ball is thrown up with a velocity of 15 m/s from a height of 10 m. A bouncing ball model is a classic example of a hybrid dynamic system. A...

Linear Algebra

Informally, the terms matrix and array are often used interchangeably. More precisely, a matrix is a two-dimensional numeric array that represents a linear transformation. The mathematical operations defined on matrices are the subject of...

Working with 8-Bit and 16-Bit Images

8-Bit and 16-Bit Indexed Images Double-precision (64-bit) floating-point numbers are the default MATLAB representation for numeric data. However, to reduce memory requirements for working with images, you can store images as 8-bit or 16-bit...

Displaying Curl with Stream Ribbons

What Stream Ribbons Can Show Stream ribbons illustrate direction of flow, similar to stream lines, but can also show rotation about the flow axis by twisting the ribbon-shaped flow line. The streamribbon function enables...

Using .NET from MATLAB

What Is the Microsoft .NET Framework? The Microsoft .NET Framework is an integral Windows component that provides a large body of precoded solutions to common program requirements, and manages the execution of programs written...

Displaying Graphics Images

Image Types and Display Methods To display a graphics file image, use either image or imagesc. For example, assuming RGB is an image, figure(‘Position’,[100 100 size(RGB,2) size(RGB,1)]); image(RGB); set(gca,’Position’,[0 0 1 1]) [warning]This image...