characters and encodinga character in a matlab is


Characters and Encoding:

A character in a MATLAB is represented by using single quotes (example, 'a' or 'x'). The quotes are essential to denote a character; without them, the letter would be interpreted as the variable name. The Characters are place in an order using what is termed as a character encoding. In character encoding, all characters in the computer's character set are placed in a sequence and given equal integer values. The character set involves all letters of the alphabet, punctuation marks, digits, and more; mainly, all the keys on a keyboard are characters. Special characters like the Enter key are also included. Therefore, 'x', '!', and '3' are all characters. With the quotes, '3' is a character, not a number. The most general character encoding is the American Standard Code for Information Interchange, or ASCII. The standard ASCII has 128 characters that have equivalent integer values from 0 to 127. The first 32 (i.e.integer values 0 through 31) are nonprinting characters. The letters of the alphabet is in order that means 'a' comes before 'b, then c,' and so on.

The numeric functions can be used to convert a character to its equal numeric value (example, double will convert to the double value; int32 will convert to an integer value using the 32 bits, etc.). For illustration, to convert the character 'a' to its numeric equivalent, the statement below could be used:

>> numequiv = double('a')

numequiv =

97

This stores the double value 97 in the variable numequiv that shows that the character 'a' is the ninety-eighth character in the character encoding (as the equivalent numbers start at 0). It doesn't matter which number type is used to convert 'a', for illustration,

>> numequiv = int32('a')

would also store the integer value 97 in the variable numequiv. The only dissimilarity between these will be the type of the resulting variable (double in the first case, int32 in the second case).

Request for Solution File

Ask an Expert for Answer!!
Applications of MATLAB: characters and encodinga character in a matlab is
Reference No:- TGS0174713

Expected delivery within 24 Hours