Answered! The potentially assignment consists of multiple submission of equation. You are responsible to do each submission…

10:53 PM 14% o Be ms.unb.ca Summer 2017. CS 1003 Assigament 4 Dues Friday June 2nd, 201T of questions. You to do each submision and have it ready to suburit at the beginning ou ela the due dale. Each should ow cover page containing the your UNB qumtion should be started not use the back of pagw NOTE: Not all wil he collected each veek however the to each sultaisaiou wil be poated in D2L for personal marking purpoees of thoee that were collected. Suboruiwion collected will be determined raadowly in claw at 1 Submission 1 Write a MATIAB algorithm and to solve the following questiom(sage med varialle wam brackets. You are required to utile a switch in at least oor part of your code My daughter in gade actively learning math and an app to help darok She is leaning allition. wheraction, multiplication and two types of division. waatsthis app to al Ask her the first (c) her with opticaaof and with truuaiader and ak her to 1.2.34, or (opl (d) Perform the requnt operatiot a (op) band output the entire equatioa good example) Keep Rind that ia Grade they don have deciwal or aegative (a) Kultration only allowed if the nrgativ, otherwise informative (understandable by the isterded user (bl division ooly allowed be aero but that it alu perfectly divide. Each care have it divide with remainder done allow perfect division, but indicate diwkled a and what the remainder 2. write a MATLAB algorithm and serves to the following questio suggeaed varsalle is Uning loops, write a Noript which nourts a vector v lak user input asking uuribers and then auking for each our input at a time bow matytilars each exists Diply the realit well formaatted table aloo uing a for kop.

The potentially assignment consists of multiple submission of equation. You are responsible to do each submission and have it ready to submit at the beginning on claims on the due date. Each submission should have its own cover page containing the course number assignment number:submission number:year UNB registered same:and your UNB student number. Each equation is each submission should be in order and each new equation should be started on a new page with the equation number and equation on it. Please do not use the back of pages Write a MATIAB algorithm and segments to solve the following question(suggested variable names is brackets). You are required to utilize a switch statement in at least one part of your code: My daughter in grade it is actively learning math and needs an “app” to help the check her homework. She is leaning addition. subtraction, multiplication and two types of division. She wants this app to (a) Ask her the first number (a) (b) Ask her the second number (b) (c) percent her with optical of +,-,*, phi and with remainder and ask her to choose one by catering 1,2,3,4, or 5(opl). (d) Perform the request operation a (op) b and output the entire equation (see Assignment 3 solutions as good example) Keep is mind that is Grade 4 they don’t have decimals or negative numbers yet so: (a) subtraction is only allowed if the is not negative, otherwise you should point out an informative massage (understandable by the intended user) (b) division is only allowed if its not “bed” but not only does this mean the second numbers cannot be zero, but that it must also perfectly divide. Each care should have its own error massage (c) divide with remainder done allow non-perfect division, but must indicate how many times b divided a and what the remainder is (example 5 = 2 is 2 with a reminder of 1). Write a MATLAB algorithm and scripts to solve the following question (suggested variable names is brackets): Using for loops, write a script which counts for a vector v (ask user input by asking how many numbers and then asking for each number one input at a time) how many times each exists in the vector. Display the result as a well formatted table also using a for loop.

Expert Answer

 Here is the solution of the given criteria, please go through it throughly

Part 1:-  Please run these codes into your MATLAB window and check out the output

a = input(‘Enter the first nubmer : ‘); % This command is used to enter the input
b = input(‘Enter the second nubmer : ‘); % This command is used to enter the input
fprintf(‘nYour option is n1.Additionn2.Subtractionn3.Multiplicationn4.Divisionn5.Division with Remaindern’) % This command is used to print the options
var= input(‘Please enter the your option :’); % This command is used to enter the input
switch var %Here switch statement is used
case 1
c=a+b;
fprintf(‘nAddition of entered number is : %d’,c );
case 2
c=a-b;
fprintf(‘nSubtraction of entered number is : %d’,c );
case 3
c=a*b;
fprintf(‘nMultiplication of entered number is : %d’,c );
case 4
c=a/b;
fprintf(‘nDivision of entered number is : %d’,c );
case 5
c=mod(a,b);
fprintf(‘nDivision with remainder of entered number is : %d’,c );
otherwise
fprintf(‘nInvalid option’ );
end

Please check out it the output shown below:-

Still stressed from student homework?
Get quality assistance from academic writers!