Celsius to Fahrenheit or vice versa
Show older comments
Creating a program to convert Celsius to Fahrenheit
2 Comments
Walter Roberson
on 9 Jan 2020
Moved: DGM
on 2 May 2024
We don't know given that little information.
T*9/5+32
Accepted Answer
More Answers (2)
Diego
on 12 Dec 2022
function [y] = farenheit(C)
y = 9/5 *C + 32;
%farenheit is the name of the file
Categories
Find more on Video Formats and Interfaces in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!