<< Chapter < Page Chapter >> Page >
Displaying results from processing data in Matlab to a user.

Now that we have all of the coins matched up to their counterparts in the database, we need to display the results. Since we've extracted metadata from the database, we can display various types of information in addition to simply the name of the coin. For example, since each coin is classified as being either a 'heads' or a 'tails,' we can even run statistics on what percentage of the coins are face up. A simple display mechanism is to output the result strings to the command line using the DISP() command.

There are two easy ways to form strings. Let's say you want to output the string 'Coin 1 is a US Quarter.' and you know the index of the coin, coinIndex = 1, and the string of the type of coin from the database, name = 'US Quarter'. You can do this using concatenation in Matlab, as you would any other matrix, taking into account the conversion between numbers and ASCII:

disp(['Coin ' num2str(coinIndex) ' is a ' name '.'])

Alternatively, if you're familiar with C, you can use the SPRINTF() command:

disp(sprintf('Coin %d is a %s.', coinIndex, name))

In addition to the command line, it is useful to display the name of the coin directly on the image of the coin. We can accomplish this with the TEXT() command. Pass in the centers of the coins, the identification string from the database, and some additional optional parameters to get the string to appear better:

text(circen(N, 1), circen(N, 2), label, 'HorizontalAlignment', 'center', 'FontWeight', 'bold', 'Color', 'red')

Labeled coins

Display the identification of the coins graphically.

From these example displays of results, you should be able to create your own types of output. Be creative!

Get Jobilize Job Search Mobile App in your pocket Now!

Get it on Google Play Download on the App Store Now




Source:  OpenStax, Elec 301 projects fall 2006. OpenStax CNX. Sep 27, 2007 Download for free at http://cnx.org/content/col10462/1.2
Google Play and the Google Play logo are trademarks of Google Inc.

Notification Switch

Would you like to follow the 'Elec 301 projects fall 2006' conversation and receive update notifications?

Ask