Write an executable script file (m-file) that takes no input and uses the switch
ID: 3827137 • Letter: W
Question
Write an executable script file (m-file) that takes no input and uses the switch/case structure on the function below to incorporate an user integer input (x) to give an output (y). Also, incorporate a “continue” command in your program code when executing the Not Allowed x values. Have your code prompt the user to add another integer input while notifying them that the value is Not Allowed.
Code is in matlab, CANNOT use elseif statements for this even though it's much easier to do so with them. Honestly just confused how to get the ranges of values I need for the cases especially because there's negative values.
Explanation / Answer
#!/bin/bash
# File: backup.sh
# Description: This script maintains a rolling backup of an important file (backup)
# The script maintains up to 10 rolling backups.
# Input: None
# Output: None
#
for n in 5 4 3 2 1
do
if [ -r backup.$n ]; then
mv backup.$n backup.‘expr $n + 1‘
fi
done
exit 0
Related Questions
drjack9650@gmail.com
Navigate
Integrity-first tutoring: explanations and feedback only — we do not complete graded work. Learn more.