Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Often, certain data entries in a data set can be missing, corrupted, or invalid. Computers often assign such entries with value of NaN (which stands

image text in transcribed

Often, certain data entries in a data set can be missing, corrupted, or invalid. Computers often assign such entries with value of NaN (which stands for not-a number). In MATLAB, the NaN functions similarly to numbers. For example, you could create a MATLAB array [2:5 NaN 7 8J. To see an important attribute of NaN that is different than a number, type NaN NaN into the command window and observe the result. The below steps require you to use MATLAB features that can be helpful when using data sets. Follow the steps below: Note: do not present any of the arrays in the command window unless requested. 5. Create a 2D data array using the lines below (write them exactly as written below): rng(2); % line 1 A-randi( 10, 1000, 1000); % line 2 A(randi( 1e6,20,1))-NaNi % line 3 Describe in words (in the command window) what line 3 in part a does. Create a vector, prob5c, containing the column indices of A which contain at least one NaN. Hint re-read the first paragraph of this problem Replace any element of A that is NaN with a 0. Certain elements of A have the following characteristics: an even row number, an odd column number, and a value that is less than or equal to 5. Copy matrix A into a matrix B and replace each element which has every listed attribute with -41 a. b. c. d. e. f. Calculate the sum of the values in the matrix B (1 number)

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

MySQL/PHP Database Applications

Authors: Brad Bulger, Jay Greenspan, David Wall

2nd Edition

0764549634, 9780764549632

More Books

Students also viewed these Databases questions

Question

What were the issues and solutions proposed by each team?

Answered: 1 week ago