Filter löschen
Filter löschen

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

1 Ansicht (letzte 30 Tage)
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 Kommentar
DGM
DGM am 31 Okt. 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

Melden Sie sich an, um zu kommentieren.

Akzeptierte Antwort

Walter Roberson
Walter Roberson am 31 Okt. 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 Kommentare
JMK
JMK am 31 Okt. 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
Walter Roberson
Walter Roberson am 31 Okt. 2021
output = ArchTrigFunction(A./B)
with appropriate A, B, ArchTrigFunction

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (0)

Produkte

Community Treasure Hunt

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

Start Hunting!

Translated by