type logicalthe type logical is used to store the


Type logical:

The type logical is used to store the true/false values.

If any variables have been formed in the Command Window, they can be seen at the Workspace Window. In that window, for each variable, the variable name, value, and class (that is necessarily its type) can be seen. The other attributes of variables can also be seen in the Workspace Window. Which attributes are seen by default based on the version of MATLAB. Though, when the Workspace Window is selected, clicking View allows the user to choose which attributes will be displayed.

By default, numbers are stored as type double in the MATLAB. There are, though, many functions which convert values from one type to other. The names of these functions are similar as the names of the types merely shown. They can be used as functions to convert the value to that type. This is termed as casting the value to a different type, or type casting. For illustration, to convert a value from the type double, that is the default, to the type int32, the int32 function would be used. Typing the assignment statement which is as shown below:

>> val = 6+3

would result in the number 9 being stored in the variable val, with the default type of double, that can be seen in the Workspace Window. Afterward, the assignment statement

>> val = int32(val);

would change the type of the variable to int32, but would not change its value. If we rather stored the result in another variable, we could see the distinction in the types by using whose.

>> val = 6 + 3;

>> vali = int32(val);

>> whos

Name Size Bytes Class Attributes

val 1x1 8 double

vali 1x1 4 int32

One of the reasons for using an integer type for a variable is to save the space.

Request for Solution File

Ask an Expert for Answer!!
Applications of MATLAB: type logicalthe type logical is used to store the
Reference No:- TGS0174707

Expected delivery within 24 Hours