Question
Please must read first 2 lines and the given Task below as per requirement before implement the program. Write the code by using POSIX threads
Please must read first 2 lines and the given Task below as per requirement before implement the program.
Write the code by using POSIX threads and mutex/semphore/barrier. Explain below
Write a brief report, including the pseudo code and giving an explanation why you choose the method
Suppose we have a program that generates large quantities of random floating point data that it stores in an array. In order to get some feel for the distribution of the data, we can make a frequency histogram of the data. A frequency histogram is a graph with vertical columns that represent the frequency of a data point or range of data points occurring in a set of data. Recall that to make a histogram, we simply divide the range of the data up into equal sized subintervals, or bins, determine the number of measurements in each bin, and plot a bar graph showing the relative sizes of the bins or display how many floating point values are cast into each bin. As a very small example, suppose our data are 1.3, 2.9, 0.4, 0.3, 1.3, 4.4, 1.7, 0.4, 3.2, 0.3, 4.9, 2.4, 3.1, 4.4, 3.9, 0.4, 4.2, 4.5, 4.9, 0.9 Then the data lie in the range 0-5, and if we choose to have five bins, for example, 0-1, 1-2, , and 4-5,
In the exercise, you do not need to draw the histogram plot but you are required to display the frequency of range of floating point values
Task
Write the code by using POSIX threads and mutex/semphore/barrier.
Given the following inputs, output an array containing the frequency count of floating point values being cast in each bin: - the array of data_count floats, data; - the count of floating-point values, data_count - the minimum floating-point value, min_meas; - the maximum floating-point value, max_meas; - the number of bins, bin_count. Note: You just need to display the frequency in the text format. No plot is needed. Please use pointers instead of regular array operations.
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started