Recent content by ACLerok

  1. A

    Interesting topics in network security?

    sounds interesting though i don't have to demo anything, just present an idea. I'll look into this
  2. A

    Interesting topics in network security?

    I need to come up with a topic to present in one of my classes but I'm having a hard time coming up with something. I thought about doing a presentation on video security or how a cable box is securing the incoming video but someone else is doing it. I thought about maybe doing it on some type...
  3. A

    Why Can Carbon Have Valences of +4 and -4?

    I haven't taken a single Chem course for probably 3 years and I was asked a question which I couldn't answer. Basically, why can the valence of Carbon be either +4 or -4? I know it has something to do with the electron configuration. Thanks.
  4. A

    Voltage Regulator: Low Voltage Applications in Circuits

    This may be a dumb question but I guess it won't hurt to ask. Is there a reason to use a voltage regulator to obtain a lower voltage from a certain set power supply voltage over using a voltage divider? I guess I'm talking low voltage applications in circuits not high power electronics.
  5. A

    C/C++ Measuring Time Elapsed in C++ for Accurate Time Tracking

    Hmm, strange that is still always 0 ms.
  6. A

    C/C++ Measuring Time Elapsed in C++ for Accurate Time Tracking

    I am writing a program and I need to measure the time it takes for a particular function to execute. Here is the code I am using to get familiar with time.h #include <stdio.h> #include <time.h> #include <iostream> using namespace std; double diffclock(clock_t clock1,clock_t clock2)...
  7. A

    Object Recognition: Advice on 10-Day Assignment

    check out Viola-Jones algorithm
  8. A

    C/C++ How can I extract and print every 5 digits from a txt file using C++ file i/o?

    i have a txt file full of numbers and i just want to take the first 5 digits, save it has one number, shift over 1 digit, take another 5 digits, save it, and so on until the end of the file here is the code fstream Prime; Prime.open("digitsofe.txt"); if (!Prime.is_open()) { cout <<...
  9. A

    MATLAB Fitting a Curve to Data: MATLAB vs Excel

    will i be able to enter in my own custom equation? thanks
  10. A

    MATLAB Fitting a Curve to Data: MATLAB vs Excel

    I have a set of data and I need to fit a curve to it. The equation of the curve is: y=20-a*10*log(x) My problem is just getting a curve fit to this equation. What function in MATLAB should I be looking for? How do I get the value of 'a'? Is it easier to achieve this in Excel? How?
  11. A

    Decoder and register in Verilog

    I'm trying to program the write action for a register file. Basically I have 16 instances of a register file whose inputs are: enbl - the enable signal write_data - data to be written to register clk - clock and a single output, out, which is the value of the register. The problem I'm having...
  12. A

    Solving Equation for Lambda in Terms of A

    After cancelling the ln's I end up with the equation below, but then it seems the lambdas cancel each other out. Is that correct? apparently from the solutions, lambda does not cancel. http://img516.imageshack.us/img516/5822/picture1nd7.th.png
  13. A

    Solving Equation for Lambda in Terms of A

    I am trying to solve for the variable lambda in terms of A. After multiplying the denominator term over to the other side, how do I go on from there? I don't know how to get rid of the exponential terms. Thanks on advance. http://img521.imageshack.us/img521/4006/picture1ug1.th.png
  14. A

    Circuit Connection: Meaning of VEE to 50k Resistor

    Can anyone tell me what the following circuit connection means? It's the arrow going from VEE to the 50k resistor. Thanks. http://img442.imageshack.us/img442/8861/picture1ry3.png
  15. A

    Evaluating Integral of a Trigonometric Function: Homework Solution

    Homework Statement Evaluate the integral with respect to f of the following function http://img233.imageshack.us/img233/5303/picture1ub7.png The Attempt at a Solution This if for one of my homeworks. I haven't taken a single math course in almost 2 years so I'm kind of rusty. I'm...
Back
Top