필터 지우기
필터 지우기

How to create MATLAB functions for the following unit conversions

조회 수: 14 (최근 30일)
1. Inches to feet 2. Calories to joules 3. Watts to BTU/hr 4. Meters to miles 5. Miles per hour (mph) to ft/s

채택된 답변

Image Analyst
Image Analyst 2017년 10월 29일
For example:
function feet = InchesToFeet(inches)
feet = inches / 12;
Similar concept for the others, just use different multiplication factors.

추가 답변 (0개)

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by