Recent content by pumas

  1. P

    Medical What is the Purpose of the R/2 Resistor in Augmented Limb Lead Measurements?

    Hello, To measure the augmented limb lead voltages aVr, aVl and aVf two resistors of value R are used on the (-) side and a resistance R/2 on the (+) side. Could anyone please explain me what is the purpose of the R/2 resistor. I attached a picture. Thank you
  2. P

    How to search for duplicate values in an array of integers?

    I'm trying to search for duplicate values in a array of integers in Java. The array of intergers is sorted. Could anyone give me an idea on how to get started. :confused:
  3. P

    How is phasor analysis used in nonlinear systems?

    Hello, What happens when phasor analysis is applied to nonlinear systems? could someone explain me how it would work? :confused: Thanks
  4. P

    Comp Sci Fixing ArrayOutOfBound Error in BinarySearch

    I'm supposed to create a method that adds intergers to an array and keep it in sorted order. I'm supposed to search for the number in the array using binarySearch. I get an error that says arrayOutOfBound I don't know how to fix this. I have written the following code: elementData is the array...
  5. P

    Java How can I add an integer to a sorted array using binary search in Java?

    Hello, I need to write a method that adds an interger to a sorted array of integers. I'm using the following code to search for an interger in the array private static int binarySearch(int[] list, int key, int low, int high) { while (low <=...
  6. P

    Understanding the Region of Operation for CMOS Transmission Gate: VDD vs Ground

    Hello, I'm supposed to determine the region of operation of both the n-channel and the p-channel MOSFET'S when the control voltage is at VDD(5V) and both I/O terminals are at VDD. Also I have to figure out the region of operation when the control voltage is at VDD but the I/O terminals are at...
  7. P

    Which Diode is Best for Charging and Maintaining Capacitor Charge?

    Hello, In lab the reverse leakage current of 4 different diodes was measured. Then ranked from smallest to biggest. Then we are asked to decide which diode would be most suitable for charging up a capacitor and allowing the capacitor to keep its charge for the longest period of time? I...