Vehicle speed calculation script

조회 수: 13 (최근 30일)
Prabaharan A
Prabaharan A 2022년 9월 23일
답변: Walter Roberson 2022년 9월 23일
Hi I need M script file for Vehciel speed calculation and some basic mscript files for learning

답변 (2개)

Sam Chak
Sam Chak 2022년 9월 23일
Here is a basic script to calculate the average vehicle speed:
Distance = 200; % km
Duration = 2.5; % hours
AvgSpeed = Distance/Duration % km/h
AvgSpeed = 80

Walter Roberson
Walter Roberson 2022년 9월 23일
D = input('Enter distance vehicle travelled: ');
T = input('Enter time required for the travel: ');
vehicle_speed = D ./ T

카테고리

Help CenterFile Exchange에서 Control System Toolbox에 대해 자세히 알아보기

태그

제품


릴리스

R2022b

Community Treasure Hunt

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

Start Hunting!

Translated by