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
What types of problems might an electrical engineer need to solve?
aleksandr82 [10.1K]

Answer:

sectores industriales, comerciales o públicos, o para el uso doméstico.

Explanation:

8 0
3 years ago
a metal coin has certain properties that can be measured.which property of a coin is different on the moon that is on earth?
Sloan [31]

Answer:

Coins weigh less on the Moon.

Explanation:

Gravity is only 1/6th as strong on the Moon than it is on Earth. Where a nickle is about 5 grams on Earth, it is less than 1 gram on the Moon. Gravity is affected by the size of the planet or moon. The Moon is much less massive than the Earth.

8 0
3 years ago
A function is different from a procedure because a functiondoes not contain a set of instructions.can have only a limited number
777dan777 [17]

Answer: A function returns a value and a procedure just executes commands.

Explanation:

6 0
2 years ago
Read 2 more answers
Technician A says that carbon monoxide (CO) and hydrocarbon (HC) levels should increase if the air injection reactor (AIR) hoses
lara31 [8.8K]

Answer:Technician A

Explanation:

7 0
4 years ago
Read 2 more answers
Prebions Now that you are about to complete this module, I'm sure you
kvasek [131]

Explanation:

These are probably the most used tool in any Plumber’s tool box. Pliers are not just another tool for a Plumber, they become an extension of their arms. Most people think that sounds odd, but pliers are more than just a tool to grab or turn things.

These are probably the most used tool in any Plumber’s tool box. Pliers are not just another tool for a Plumber, they become an extension of their arms. Most people think that sounds odd, but pliers are more than just a tool to grab or turn things.Sometimes a piece of copper pipe won’t quite go into a fitting. By using the handle end as a mallet you can gently force it in without damaging/denting the pipe or fittings. Or, when a brute force is needed the jaw end becomes a hammer. On an old pair of pliers I took a grinder to form one side of the handle into a flathead screwdriver/pry bar.

7 0
3 years ago
Other questions:
  • On a average work day more than work place firs are reorted​
    9·1 answer
  • Students are expected to respond to one of the two questions described below. Students should provide examples to clarify their
    12·1 answer
  • The fluid-conditioning components of hydraulic-powered equipment provide fluid that is clean and maintained at an acceptable ope
    6·1 answer
  • A soil element is subjected to a minor principle stress of 50 kPa on a plane rotated 20 ° counterclockwise from vertical. If the
    10·1 answer
  • B. Is the “Loading Time” of any online application a functional or a non-functional requirement? Can the requirement engineers s
    11·1 answer
  • If you are involved in a collision and your vehicle is blocking the flow of traffic, you should
    5·1 answer
  • Strands of materials A and B are placed under a tensile force of 10 Newtons. Material A deforms more than Material B.
    5·2 answers
  • HI! If you love the art that is good. My teacher Mrs. Armstrong is the best paintings ever year. Come to Mountain View Elementar
    10·2 answers
  • ______________ help protect the lower legs and feet from heat hazards like molten metal and welding sparks.
    5·1 answer
  • 16 . You are turning onto a two-lane road divided by a broken yellow line. You know immediately that:
    5·1 answer
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!