Question

Matlab progarnning Problem #6 : We have set up a limit in current on a piece...

Matlab progarnning

Problem #6 : We have set up a limit in current on a piece of equipment to be 0.55 Amps. When the system is running data is gather in the DAQ. The system generates a vector of 10 random numbers in one single column. The control system is comparing if the values of the result currents are higher than the limit set for the supplier. We need to project the results into a monitor for easy understanding and to take action over the equipment. If one of the parameters in the vector has a value higher than the limit, we will need to display a message that say “There is at least one current value measure above the limit”, if this is not true, please display “All values are below the limit. You can proceed with your data acquisition”.

0 0
Add a comment Improve this question Transcribed image text
Answer #1

Program asks to generate a vector of 10 random numbers in a single column , compare it with limit . If any value of vector is greater than limit then display a mesage otherwise display another message

*******************************************************************

limit = 0.55;                              %Initialize limit

DAQ = rand(10,1)                      %Generate a vector of 10 random numbers in single column

for i = 1:10

if DAQ(i)>limit                           %if DAQ(i) > limit then initialize S with message and break the loop

S = 'There is atleast one current value measure above the limit';

break

else

S = 'All values are below the limit.You can proceed with your data acquisition';

end

end

disp(S)                     %Display message

********************************************************

Output

DAQ 0.9133 0.1524 0.8258 0.5383 0.9961 0.0782 0.4427 0.1067 0.9619 0.0046

There is atleast one current value measure above the 1imit

Add a comment
Know the answer?
Add Answer to:
Matlab progarnning Problem #6 : We have set up a limit in current on a piece...
Your Answer:

Post as a guest

Your Name:

What's your source?

Earn Coins

Coins can be redeemed for fabulous gifts.

Not the answer you're looking for? Ask your own homework help question. Our experts will answer your question WITHIN MINUTES for Free.
Similar Homework Help Questions
  • MATLAB MATLAB MATLAB Consider the diagram below V R$ Here, each V represents a change in...

    MATLAB MATLAB MATLAB Consider the diagram below V R$ Here, each V represents a change in voltage (in volts) at a battery, each R represents a resistance in ohms) at a resistor and each I represents a current (in amps) through a wire. These quantities obey two simple laws: 1. Ohm's law: The voltage drop across a resistor is V = IR. 2. Kirchhoff's second law: The sum of all the voltage changes in a closed loop is zero. Using...

  • Problem 1. (20) The purpose of this exercise is for you to get familiar with MATLAB...

    Problem 1. (20) The purpose of this exercise is for you to get familiar with MATLAB and some of its capabilities. We have seen in class that, for a positive integer n and data {(rj, yj)|j= 0,...n}, the matrix system produces the coefficients of the polynomial Pn(x) coc1x++ cn&" that interpolates the data, where [Vn]ij = x;_{ for 1 < i,j <n+1. Let r j/n, giving a uniformly spaced set of n 1 points in [0, 1]. Write a MATLAB...

  • Please solve part d in MATLAB Problem Statement Consider the Shockley diode equation, which approximates the...

    Please solve part d in MATLAB Problem Statement Consider the Shockley diode equation, which approximates the current-voltage (characteristic) curve of a diode: Here, is the current flowing through the diode (in amperes), and Vo is the voltage drop across the diode (in volts). VT is the thermal voltage, which varies based on the temperature. Assume that VT0.026 V, which is true when the diode is a little above room temperature. Therefore, in this equation, there are two unknown parameters that...

  • #5 is only I need in which we need to plot it on Matlab and I...

    #5 is only I need in which we need to plot it on Matlab and I don't know how to plot it. Project 1 A Vibration Insulation Problem Passive isolation systems are sometimes used to insulate delicate equipment from unwanted vibrations. For example, in order to insulate electrical monitoring equipment from vibrations present in the floor of an industrial plant, the equipment may be placed on a platform supported by flexible mountings resting on the floor. A simple physical model...

  • this is database course please draw the ER by this way We have been asked to...

    this is database course please draw the ER by this way We have been asked to analyze the data requirements and develop a database system to keep information for equipment hiring companies in the country The aim of this system is to monitor the hiring of equipment to dients. There are many companies in the country, and each company has at least three branches across the country. Where each branch has staff including the branch manager who is responsible for...

  • Hello I need help with this program. Should programmed in C! Program 2: Sorting with Pointers...

    Hello I need help with this program. Should programmed in C! Program 2: Sorting with Pointers Sometimes we're given an array of data that we need to be able to view in sorted order while leaving the original order unchanged. In such cases we could sort the data set, but then we would lose the information contained in the original order. We need a better solution. One solution might be to create a duplicate of the data set, perhaps make...

  • General overview This program will convert a set of temperatures from Fahrenheit to Celsius and Kelvin....

    General overview This program will convert a set of temperatures from Fahrenheit to Celsius and Kelvin. Your program will be reading in three double values. The first values are starting and ending temperatures. The third value is the increment value. There is no prompt for the input. There is an error message that can be displayed. This is discussed later. You need to display output for all of the values between the starting and ending values. First two values are...

  • 4. Matlab Solvers: A Case Study in Mechanics Suppose we have two objects orbiting in space,...

    4. Matlab Solvers: A Case Study in Mechanics Suppose we have two objects orbiting in space, with masses 1 - and , rotating around each other. For example, think of the earth and the moon, where the moon moves around the earth at distance 1. (Of course, here both the masses and the distance are normalized.) A third object, which is relatively much smaller and does not affect the motion of the first two, is also orbiting in space. Think...

  • Please give clear and correct solutions. Need help. University astronomy. Thanks Briefing As we have seen,...

    Please give clear and correct solutions. Need help. University astronomy. Thanks Briefing As we have seen, the Sun's energy comes from a series of nuclear fusion reactions (the p-p chain) in which 4 protons (Hydrogen nuclei) fuse to produce a "He nucleus. The original 4 protons have a higher net mass than the "He nucleus and the missing mass is converted to energy mostly in the form of gamma rays. Eventually, this energy (now degraded to visible light photons) is...

  • Summarize these pages in your own style and you have to include in your report some...

    Summarize these pages in your own style and you have to include in your report some figures highlighting the relation between these operations. Basic AGGREGATE functions (Revision) COUNT: returns the number of tuples, which meet the specified condition: SELECT COUNT(DISTINCT Dept) AS Num_Depts FROM subject: SUM: returns the sum of the values in a specified column (i.e. numeric column) SELECT COUNT(*) AS hi_sal, SUM(salary) FROM Lecturer WHERE Salary > 4500 MIN: returns the minimum value in a specified column (numeri...

ADVERTISEMENT
Free Homework Help App
Download From Google Play
Scan Your Homework
to Get Instant Free Answers
Need Online Homework Help?
Ask a Question
Get Answers For Free
Most questions answered within 3 hours.
ADVERTISEMENT
ADVERTISEMENT
ADVERTISEMENT