II. Plotting the Conversion
4 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
- Ask the user their name and store in a variable
- Ask user to enter 10 values as an array and store in a variable (bookend with square brackets)
- Convert the entire array to Celsius and store in a variable
- Plot the temperature conversion with labels and title
- Use black asterisks for the marker
- Copy and paste the plot below:
Please help! How do I do this?
Risposte (1)
Rohit Pappu
il 29 Ott 2020
% Prompt to ask the user to enter name
prompt = ' Enter name ';
name = input(prompt,'s');
% Prompt to ask the user to enter array values with square brackets
prompt = 'Enter array of values';
temperature = input(prompt);
% Temperature conversion
celsius = (temperature - 32)*(5/9);
% Plotting Fahrenheit on X axis and Celsius on Y axis
plot(temperature,celsius,"LineStyle","none","Color",'k',"Marker","*");
xlabel('Fahrenheit');
ylabel('Celsius');
title('Plotting Fahrenheit vs Celsius');
Vedere anche
Categorie
Scopri di più su Characters and Strings in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!