1answer.
Ask question
Login Signup
Ask question
All categories
  • English
  • Mathematics
  • Social Studies
  • Business
  • History
  • Health
  • Geography
  • Biology
  • Physics
  • Chemistry
  • Computers and Technology
  • Arts
  • World Languages
  • Spanish
  • French
  • German
  • Advanced Placement (AP)
  • SAT
  • Medicine
  • Law
  • Engineering
Mariulka [41]
3 years ago
6

Create a function (prob3_5) that will take inputs of vectors x and y in feet, scalar N, scalars L and W in feet and scalars T1 a

nd T2 in degrees Fahrenheit. It will output a matrix T which is the temperature of each x and y locations. T will have the number of columns equal to the number of elements in x and rows equal to the number of elements in y. Though this can be done without loops (perhaps more efficiently), your program must use a nested loop.
Engineering
1 answer:
Shalnov [3]3 years ago
3 0

Answer:

clear, clc

prob3_5([1,2,3],[6,5,7],12,11,22,55,76)

function T=prob3_5(x,y,N,L,W,T1,T2)

w=zeros(1,length(x));

for n=1:2:N

for i=1:length(x)

w(i)=w(i)+(2/pi)*(2/n)*sin(n*pi*x(i)/L).*sinh(n*pi*y(i)/L)/sinh(n*pi*W/L);

end

end

T=(T2-T1)*w+T1;

end

Explanation:

Please input the commands into MATLAB

You might be interested in
Suppose a person (height of 1.8 m) walks in a room installed with a pyroelectric infrared (PIR) motion detector. The distance be
3241004551 [841]

Answer: b is your best option

Explanation:

8 0
3 years ago
Does anyone have cumulative exams today or tomorrow?(There so boring!)
IRINA_888 [86]

Answer:

I do!!

Explanation:

I have to sit for 3 hours lol‍♀️

3 0
3 years ago
Read 2 more answers
Is it possible to have a heat engine with efficiency of 100%?
Alex17521 [72]

Answer:

No

Explanation:

Heat engines are used for converting the heat into mechanical energy which is used for doing mechanical work.

The efficiency of heat engine is the fraction of mechanical energy to the thermal energy. The efficiency can not be 100% as some of the energy always loss due to friction and motion of the body parts of the heat engine.

7 0
2 years ago
For this problem, calculate the following by hand and show the procedure for how you obtained the results. Subsequently, solve p
Gemiola [76]

Answer:wat

Explanation:

4 0
3 years ago
When a starter motor begins to turn it produces a high…. *
Georgia [21]

Answer:

The motor produces a high Torque when it begins to start.

8 0
2 years ago
Other questions:
  • In what situation you would prefer to use a successive approximation ADC over flash ADC?
    13·1 answer
  • What major advancement in machine tools occurred in the 1970s and what benefits did it provide? describe in your own words.
    15·2 answers
  • Danny enjoys studying transportation networks and systems. Which field of engineering should he pursue?
    11·1 answer
  • I WILL GIVE 20 POINTS!!
    11·2 answers
  • Which factors influence changes in consumer demands? check all that apply
    8·2 answers
  • A heat engine receives heat from a heat source at 1453 C and has a thermal efficiency of 43 percent. The heat engine does maximu
    11·1 answer
  • Module 42 Review and Assessment
    7·1 answer
  • You have been assigned to design an open cylindrical storage tank 4 meters tall with a diameter of 8 meters to be made out of A-
    13·1 answer
  • Which of the following is not a function of the suspension system?_____
    6·1 answer
  • You don't have to notify employees that a lockout/tagout is about to begin?
    7·1 answer
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!