Great Deal! Get Instant $10 FREE in Account on First Order + 10% Cashback on Every Order Order Now

[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 »
[Content_Types].xml

_rels/.rels

matla
document.xml
XXXXXXXXXXFinal Project Instructions Kevin Yamada XXXXXXXXXX/27/ XXXXXXXXXXInstructions 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 XXXXXXXXXXCalculator XXXXXXXXXXbasic game XXXXXXXXXXImage processing XXXXXXXXXXmagic 8 ball XXXXXXXXXXdecision maker XXXXXXXXXXcreating gui XXXXXXXXXXcircuit design calculator Project Requirements XXXXXXXXXXSubmit the project to ilearn in a .MLX (live script) and PDF XXXXXXXXXXYou need to have a project title , name, date, and ID Number. "Very very similar format to as XXXXXXXXXXthe mini project" XXXXXXXXXXYou need to have a project description section "AKA what does your project do", this can be similar to your project proposal if approved XXXXXXXXXXYour project must contain at least 2 custom functions XXXXXXXXXXYour project must contain some type of graphics, pictures, plots, ect XXXXXXXXXXYour code must be robust "Works every time" , not just under certain cirumstances XXXXXXXXXXYou must have some type of logic, if, elseif, while, for, etc XXXXXXXXXXYour code needs to be commented XXXXXXXXXXYou need to a section describing how your code works. You dont need to explain each line, but explain what you did in your code XXXXXXXXXXAt the end you need to have a conculsion XXXXXXXXXXDid the project work? XXXXXXXXXXWhat would you change about it? XXXXXXXXXXany challenges? XXXXXXXXXXetc XXXXXXXXXXBelow is a sample final project format XXXXXXXXXXFinal Project Title Name: Date: ID Number: Project Description dhfsdjfjsdhjfhjksadfjhdjfh Project % Your Project code % Code Description ghsadggashdjhaS Conclusion
matla
output.xml
manual code ready 0.4
metadata/coreProperties.xml
XXXXXXXXXX28T01:04:14Z XXXXXXXXXX28T01:43:25Z
metadata/mwcoreProperties.xml
application/vnd.mathworks.matlab.code MATLAB Code R2019
metadata/mwcorePropertiesExtension.xml
XXXXXXXXXXb67fb267-6e96-403b-83b1-b00bc32c74ec
metadata/mwcorePropertiesReleaseInfo.xml

XXXXXXXXXX
R2019
Update 4
Jan XXXXXXXXXX
XXXXXXXXXX

MATLAB FINAL PROJECT PROPOSAL
PROJECT TITTLE: Sports Ranking-Decision Make
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 Day May 15, 2021

Solution

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

_rels/.rels

matla
document.xml
Final Project Title- Sports Ranking Decision Maker Name: Date: ID Number: 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 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