[Content_Types].xml _rels/.rels matlab/document.xml XXXXXXXXXXFinal Project Instructions Kevin Yamada XXXXXXXXXX/27/ XXXXXXXXXXInstructions The assignment is to design a MATLAB script for a real world...

1 answer below »
MATLAB Assignment to design a script regarding several popular sports teams. The assignment description and proposal are both on the submitted documents.
Instructions:Please follow the instruction.MLX File.Make sure you submit the files in the proper format.MLX and PDF or APP Designer Format.



[Content_Types].xml _rels/.rels matlab/document.xml Final Project Instructions Kevin Yamada 04/27/2020 Instructions The assignment is to design a MATLAB script for a real world problem or in a case where automation for repatative tasks are useful. There is no limitation on what you choose to design, however the project cannot be something you find online and submit as your own. If you find a project online that you like, you must provide me with the code and show how your project code is different. Remember this project is 50% of your grade, so do not submit plagiarized work, it will result in a 0 for your grade. This project must be something that you put effort into, it cannot be something that takes you 30 minutes to do, however it does not need to be super advanced or long. If you project is very basic and you complete it, this will not result in a 100%. However if your project is too advanced and you cannot complete it, this will also not result in a 100%. Pick something inbetween and make sure you can execute it perfectly. Do not work on this project with a partner or in groups, everyone needs to have a unique project. This project accounts for a significant portion of you grade; make sure you submit it on time, in proper format, and cover all of the project requirements. Project Ideas Feel free to google search some ideas! There is alot of examples online. Calculator basic game Image processing magic 8 ball decision maker creating gui circuit design calculator Project Requirements 1) Submit the project to ilearn in a .MLX (live script) and PDF You need to have a project title , name, date, and ID Number. "Very very similar format to as the mini project" 2) You need to have a project description section "AKA what does your project do", this can be similar to your project proposal if approved 3) Your project must contain at least 2 custom functions 4) Your project must contain some type of graphics, pictures, plots, ect ... 5) Your code must be robust "Works every time" , not just under certain cirumstances 6) You must have some type of logic, if, elseif, while, for, etc... 7) Your code needs to be commented 8) You need to a section describing how your code works. You dont need to explain each line, but explain what you did in your code. 9) At the end you need to have a conculsion. 1) Did the project work? 2) What would you change about it? 3) any challenges? 4) etc.... Below is a sample final project format.... Final Project Title Name: Date: ID Number: Project Description dhfsdjfjsdhjfhjksadfjhdjfh Project % Your Project code % Code Description ghsadggashdjhaS Conclusion matlab/output.xml manual code ready 0.4 metadata/coreProperties.xml 2020-04-28T01:04:14Z 2020-04-28T01:43:25Z metadata/mwcoreProperties.xml application/vnd.mathworks.matlab.code MATLAB Code R2019b metadata/mwcorePropertiesExtension.xml 9.7.0.1183724 b67fb267-6e96-403b-83b1-b00bc32c74ec metadata/mwcorePropertiesReleaseInfo.xml 9.7.0.1296695 R2019b Update 4 Jan 20 2020 3546228467 MATLAB FINAL PROJECT PROPOSAL PROJECT TITTLE: Sports Ranking-Decision Maker PROJECT DESCRIPTION: I am going to design a MATLAB script of the top 10 most popular sports in the world and with this I will design a list of which ones would I prefer to practice and or watch as I rank them. PROJECT IMPLEMENTATION: I will design 3 different questions regarding how I would prefer to practice, watch and rank the most popular sports in the world. I will be scripting the list of answers I have but it will be very important that I answer the script with my own preferences since that will make it more easy to comprehend but more interesting to perform.
Answered Same DayMay 15, 2021

Answer To: [Content_Types].xml _rels/.rels matlab/document.xml XXXXXXXXXXFinal Project Instructions Kevin...

Pratik answered on May 21 2021
127 Votes
[Content_Types].xml

_rels/.rels

matlab/document.xml
Final Project Title- Sports Ranking Decision Maker Name: Date: ID Number: Projec
t Description I am going to design a MATLAB script of the top 10 most popular sports in the world and with this I will design a list of which ones would I prefer to practice and or watch as I rank them. Project prompt = {'Eagerness to practise (0-10):','Eagerness to watch (0-10):'}; %dialog box for a sport having two criterias
dlgtitle = 'Rate Soccer on the following:';
dims = [1 35];
definput = {'0','0'};
opts='on';
answer1 = inputdlg(prompt,dlgtitle,dims,definput,opts); %user provided ratings on a scale of 0-10
user_val1 = str2num(answer1{1}); % rating for practise
user_val2 = str2num(answer1{2}); % rating for watching
disp(user_val1);
disp(user_val2); prompt = {'Eagerness to practise (0-10):','Eagerness to watch (0-10):'};
dlgtitle = 'Rate Cricket on the following:';
dims = [1 35];
%definput = {'0','0'}
opts='on';
answer2 = inputdlg(prompt,dlgtitle,dims,definput,opts);
user_val3 = str2num(answer2{1});
user_val4 = str2num(answer2{2});
disp(user_val3);
disp(user_val4); prompt = {'Eagerness to practise (0-10):','Eagerness to watch (0-10):'};
dlgtitle = 'Rate Tennis on the following:';
dims = [1 35];
%definput = {'0','0'}
opts='on';
answer3 = inputdlg(prompt,dlgtitle,dims,definput,opts);
user_val5 = str2num(answer3{1});
user_val6 = str2num(answer3{2});
disp(user_val5);
disp(user_val6); prompt = {'Eagerness to practise (0-10):','Eagerness to watch (0-10):'};
dlgtitle = 'Rate Basketball on the following:';
dims = [1 35];
%definput = {'0','0'}
opts='on';
answer4 = inputdlg(prompt,dlgtitle,dims,definput,opts);
user_val7 = str2num(answer4{1});
user_val8 =...
SOLUTION.PDF

Answer To This Question Is Available To Download

Related Questions & Answers

More Questions »

Submit New Assignment

Copy and Paste Your Assignment Here