Azzera filtri
Azzera filtri

I need to create a formula but im not sure how to do it with the infor given

1 visualizzazione (ultimi 30 giorni)
So my inital problem is that I need to use an array of tables which imported into matlab, however I need to use the length and the height of a ramp to determine the angle measurement of the ramp, and by doing this i need to create a funcution that accepts the Height and length as inputs and outputs the results. If anyone could help guide me through this, please feel free to answer with a couple of tips.
image provided to better understand the problem:
the parts scribbled out is the parts ive already completed. I dont really need so much help on 5-6 but i do need help on 3 through 4.
  1 Commento
DGM
DGM il 31 Ott 2021
A simple function template:
function theresult = myfunctionname(argument1,argument2)
% the first contiguous block of commented lines is treated as
% the synopsis and constitutes the text returned when you
% call help on your function.
theresult = %... (some trig)
end
look up atan2d and atand

Accedi per commentare.

Risposta accettata

Walter Roberson
Walter Roberson il 31 Ott 2021
You are given input information that is height and hypotenuse length, and you are asked to find angle.
sin(theta) = opposite / hypotenuse
cos(theta) = adjacent / hypotenuse
tan(theta) = opposite / adjacent
Length of the ramp is hypotenuse, height of the ramp is... which, opposite or adjacent?
If you had both right hand side values of one of those lines, how would you calculate the angle ?
  2 Commenti
JMK
JMK il 31 Ott 2021
I do I just didnt know how i would incorperate that into an equation, thank you for the help I hope it works fingers crossed

Accedi per commentare.

Più risposte (0)

Prodotti

Community Treasure Hunt

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

Start Hunting!

Translated by