Community Tip - Want the oppurtunity to discuss enhancements to PTC products? Join a working group! X
Hi,
I need help with a certain problem. So I have done calibration on a set of instruments. The serial numbers as well as the calibration factors associated with them are given in the first 2 columns of the excel sheet. Now I am running all the instruments (I don't have cal factors for some) and I am getting a certain calibrator count as shown in columns F and G.
Now the issue is I need to compare the serial numbers of all the instruments with the subset to see which ones have cal factors associated with them. For instruments with cal factors, I need to multiply the cal factor (associated with that serial number) with the count for that particular instrument and output the result. So I need to write a mathcad program to output only the serial numbers of instruments with cal factors as well as the product of cal factor and count. I am attaching the excel sheet. I am using Mathcad Prime 6. Thanks for the help.
Solved! Go to Solution.
Hi
Enclosed is the coding and the result.
Cheers
Terry
Thanks a lot!!!
Hi, I have a follow up question. If I want to take the median of the values in one column but if I want to avoid the rows with the NaN values in the overall calculation, what should I do? Thank you.
Check the filterNaN() function.
Success!
Luc
Thanks Luc,
I also need to write a program to remove outliers in the data. Can you tell me a way to remove rows containing data greater than or less than a certain fixed values.
Thanks.
Hi,
You can put "if" statements within the inner loop to compare data[index[m to certain values
Thanks Terry!!!