Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

MATLAB 4. (a) Write a MatLab program that uses Matlab's svitch construction to convert a date entered by the user in the form mm/dd/yyyy into

image text in transcribedMATLAB

4. (a) Write a MatLab program that uses Matlab's svitch construction to convert a date entered by the user in the form mm/dd/yyyy into its text form (i.e., Month day, year). For example, if 02/17/2019 is entered, the program should print out "February 17, 2019". To read in a text string entered by the user, use the following form of the input statement: Date = input ('Enter date as mm/dd/yyyy: ,, ,s') The string variable Date will then be a 10-element vector, whose elements are the individual characters in the string. You can extract a piece of the string and convert it to a numeric variable using the colon operator to specify a range of elements as a vector index and the MatLab function str2num(). For example, to extract the number for the month from Date, use MonthNumber-str2num (Date (1:2)) To save typing, your program only needs to consider dates that are in the first half of the year January through June. (b) Add code to your program that prints out the number of the day in the year corresponding to the date the tse has entered. For example, if the user enters 03/12/2019, the program should print out "This is day number 71 of 2019" The number of days in each of the first six months are: Jan-31, Feb-28, Mar- 31, Apr 30, May 31, Jun-30 I need the MATLAB code for both parts please

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

Harness The Power Of Big Data The IBM Big Data Platform

Authors: Paul Zikopoulos, David Corrigan James Giles Thomas Deutsch Krishnan Parasuraman Dirk DeRoos Paul Zikopoulos

1st Edition

0071808183, 9780071808187

More Books

Students also viewed these Databases questions

Question

Which two days appear to have the highest transaction amounts?

Answered: 1 week ago

Question

How do we do subnetting in IPv6?Explain with a suitable example.

Answered: 1 week ago

Question

Explain the guideline for job description.

Answered: 1 week ago

Question

What is job description ? State the uses of job description.

Answered: 1 week ago

Question

What are the objectives of job evaluation ?

Answered: 1 week ago

Question

Write a note on job design.

Answered: 1 week ago