Recent content by RoshanBBQ

  1. R

    Solving Delta Function Convolution with Sin Wave

    That is just the sum of two Dirac delta functions. f_1(x) = \delta(x) + \delta(x-2) Just write out the convolution integral and use the sampling rule.
  2. R

    Are You a Vegetarian? | Poll & Discussion

    I would like to eat the same things my ancestors ate. They ate meat, so I eat meat. The reasoning is that on average, people who handled that diet best survived more often than people who did not mesh with that diet. I am a product of this procedure repeated many times, indicating there is a...
  3. R

    Importing data from text file into Matlab

    http://www.mathworks.com/help/techdoc/ref/f16-5702.html#f16-14516 MATLAB has a set of low-level file reading commands, which can do practically anything given some semblance of structure in the data and enough time and code length.
  4. R

    Importing data from text file into Matlab

    What is the context? If you just need to do this once, by far the simplest approach is to manually break the file up into two text files with only the data in it. So make matrixA.txt with 1 2.000000000000e+00 0.000000000000e+00 1.000000000000e+00 0...
  5. R

    Solving Delta Function Convolution with Sin Wave

    \delta(t)\delta(t-2) = 0 And the convolution of a function with zero is zero. Your definition of the convolution integral appears incorrect. I suspect you are not giving us all the details, because the problem makes no sense. What was the original problem? (I know there was one since the...
  6. R

    Distributed Blame: Teacher Responsible For Unethical Cheating?

    Yeah it is. The analogy is very simple. In both cases, a person provokes the immoral action out of the other person. This is a contradiction. You say there is no question about it while at the same time stating confusion regarding those who question about it. But anyway, I can assure you that...
  7. R

    Distributed Blame: Teacher Responsible For Unethical Cheating?

    You are confusing two ideas: one idea is distributed blame and the other is saying someone deserved to be raped. Saying that a lasciviously dressed person is in part to blame does not indicate they deserved rape nor that the rapist does not deserve punishment. As an example, I find death to suit...
  8. R

    Distributed Blame: Teacher Responsible For Unethical Cheating?

    That's right. I think there is distributed blame there too if the raped person were actually scantly dressed in an inappropriate place (which is defined by social norms and changes from society to society). But just because there is distributed blame, that doesn't mean I am proposing the raped...
  9. R

    Griffith's Solutions Manual: To Copy or not to Copy?

    Yes, it's true not everyone does it. But after I have the manual, I often ask people I like even a little bit whether they want it. The answer is always "Yes" or "I already have it." I have to point out also I have told most professors I have that I have the solution's manual. For one teacher...
  10. R

    Griffith's Solutions Manual: To Copy or not to Copy?

    I will say absolutely everyone in all of my classes has solution manuals (when they're for a book where the solution manual is found with a simple Google search). I will also say studying is more efficient with a solutions manual - you can do extra problems and check them as well as mentally do...
  11. R

    Using Magnetic field to repel a paper plane AP Physics Project help?

    All I'm going to say is when you deal with an outlet, you should always put a fuse in your circuit. Go by a local electronics store and pick up a 3 A fuse, and make sure it is installed before you ever plug your circuit into the wall. It will be something like this...
  12. R

    Finding Impulse Transfer Function with Impulse Invariant Method

    The idea behidn impulse invariant method is to compute a discrete impulse response, h[n], from the continuous impulse response, h(t), by sampling h(t) every T units of time. h[n] = Th(Tn) The discrete impulse response is the z-transform of this quantity. It's troubling that the problem statement...
  13. R

    MATLAB: Finding the 5th Root using Newton's Method

    Your code doesn't even compile. What in the world does while n == 1:i mean? You should instead put the E term in the while statement alongside the 'break' condition. Here is a nice skeleton code I have written % Define parameters endCondition = 0.00001; E = inf; % Initialize such that while...
  14. R

    An easy? Matlab Problem involving matrices

    Your best bet is to use matrices instead of a for loop. % define input N = 100; x = 1:0.5:5; a = sqrt(2.8); % Create big matrices X = repmat(x, [N,1]); n = repmat( (1:N).' ,[1,length(x)]); % Calculate Sn SN = prod(1-X.^2./(n.^2-a^2)); % Calculate inf values Sinf =...
  15. R

    Is it normal to forget most previously learned material?

    I have for a long time thought students who could easily make As get Bs or lower because they don't read the textbook and only use the lectures! Though I didn't immediately materialize it to apply to this topic at hand, I have to say I agree with this. The kinds of things I forget are the kinds...
Back
Top