MATLAB: A Practical Introduction to Programming and Problem Solving
MATLAB: A Practical Introduction to Programming and Problem Solving
5th Edition
ISBN: 9780128154793
Author: Stormy Attaway Ph.D. Boston University
Publisher: Elsevier Science
bartleby

Concept explainers

bartleby

Videos

Question
Book Icon
Chapter 8, Problem 8.1P
To determine

To write:

An expression that would display a random element from a cell array and a function that will receive one cell array as input argument and will display a random element from it.

Expert Solution & Answer
Check Mark

Answer to Problem 8.1P

Solution:

The file is,

%MATLAB code to create a cell array and perform the operations.

%cell array file.

X = {41,'hiii', 1:4;'matlab', 10, 1:2:9}

%define a cell array.

X{randi(numel(X))}

%define the random element from the cell array.

Z = X'

%get the transpose of the cell array.

Z{randi(numel(Z))}

%define the random element from the above cell array.

%end of cell array file

%The cell array file should be placed in the same folder.

The function file is,

%MATLAB code to create a cell array and get the random element from the cell arary.

%function file.

function A = randomelement(cell)

A = cell{randi(numel(cell))};

end

%end of function file

%The function file should be placed in the same folder

Explanation of Solution

Consider the cell array is,

 A = {41,'hiii', 1:4;'matlab', 10, 1:2:9}

The random element from the above array is,

ans=‘hiii’

MATLAB Code:

clc

clear all

close all

%MATLAB code to create a cell array and perform the operations.

%cell array file.

X = {41,'hiii', 1:4;'matlab', 10, 1:2:9}

%define a cell array.

X{randi(numel(X))}

%define the random element from the cell array.

Z = X'

%get the transpose of the cell array.

Z{randi(numel(Z))}

%define the random element from the above cell array.

%end of cell array file

%The cell array file should be placed in the same folder.

%MATLAB code to create a cell array and get the random element from the cell arary.

%function file.

function A = randomelement(cell)

A = cell{randi(numel(cell))};

end

%end of function file

%The function file should be placed in the same folder

Save the MATLAB cell array file with name, chapter8_54793_8_1P.m and a function file with the name of randomelement.m in the current folder. Execute the function by typing the function name at the command window to generate output.

Result:

The results are,

MATLAB: A Practical Introduction to Programming and Problem Solving, Chapter 8, Problem 8.1P , additional homework tip  1

MATLAB: A Practical Introduction to Programming and Problem Solving, Chapter 8, Problem 8.1P , additional homework tip  2

Therefore, the results are stated above.

Want to see more full solutions like this?

Subscribe now to access step-by-step solutions to millions of textbook problems written by subject matter experts!
Students have asked these similar questions
(c) Because logistic regression predicts probabilities of outcomes, observations used to build a logistic regression model need not be independent. A. false: all observations must be independent B. true C. false: only observations with the same outcome need to be independent I ANSWERED: A. false: all observations must be independent.  (This was marked wrong but I have no idea why. Isn't this a basic assumption of logistic regression)
Business discuss
Spam filters are built on principles similar to those used in logistic regression. We fit a probability that each message is spam or not spam. We have several variables for each email. Here are a few: to_multiple=1 if there are multiple recipients, winner=1 if the word 'winner' appears in the subject line, format=1 if the email is poorly formatted, re_subj=1 if "re" appears in the subject line. A logistic model was fit to a dataset with the following output:   Estimate SE Z Pr(>|Z|) (Intercept) -0.8161 0.086 -9.4895 0 to_multiple -2.5651 0.3052 -8.4047 0 winner 1.5801 0.3156 5.0067 0 format -0.1528 0.1136 -1.3451 0.1786 re_subj -2.8401 0.363 -7.824 0 (a) Write down the model using the coefficients from the model fit.log_odds(spam) = -0.8161 + -2.5651 + to_multiple  + 1.5801 winner + -0.1528 format + -2.8401 re_subj(b) Suppose we have an observation where to_multiple=0, winner=1, format=0, and re_subj=0. What is the predicted probability that this message is spam?…
Knowledge Booster
Background pattern image
Statistics
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, statistics and related others by exploring similar questions and additional content below.
Similar questions
SEE MORE QUESTIONS
Recommended textbooks for you
Text book image
Algebra & Trigonometry with Analytic Geometry
Algebra
ISBN:9781133382119
Author:Swokowski
Publisher:Cengage
Text book image
Algebra: Structure And Method, Book 1
Algebra
ISBN:9780395977224
Author:Richard G. Brown, Mary P. Dolciani, Robert H. Sorgenfrey, William L. Cole
Publisher:McDougal Littell
Text book image
College Algebra
Algebra
ISBN:9781337282291
Author:Ron Larson
Publisher:Cengage Learning
ALGEBRAIC EXPRESSIONS & EQUATIONS | GRADE 6; Author: SheenaDoria;https://www.youtube.com/watch?v=fUOdon3y1hU;License: Standard YouTube License, CC-BY
Algebraic Expression And Manipulation For O Level; Author: Maths Solution;https://www.youtube.com/watch?v=MhTyodgnzNM;License: Standard YouTube License, CC-BY
Algebra for Beginners | Basics of Algebra; Author: Geek's Lesson;https://www.youtube.com/watch?v=PVoTRu3p6ug;License: Standard YouTube License, CC-BY
Introduction to Algebra | Algebra for Beginners | Math | LetsTute; Author: Let'stute;https://www.youtube.com/watch?v=VqfeXMinM0U;License: Standard YouTube License, CC-BY