Recent content by neurocomp2003

  1. N

    MATLAB Apply if/else if to each element in array in MATLAB

    your function works fine when i plug it in but you seem to have some errors?...is f intended to be an output array corresponding to your functions? you need to use the . operator for array manipulation and the zeros and size functions for your else condition... did you try defining t...
  2. N

    LaTeX How to Embed Latex Equations in HTML for Beginners

    Hi, Does anyone have any references on how to embed simple latex equations into HTML? And can it be done using javascript or does it have to be php? I've seen websites that allow you to link to their on-the-fly converters via <img src="link/latex"> but usually this comes with a cap limit...
  3. N

    Audio Analysis/Synthesis, DSP/FFT/Spectrogram

    Hi, I'm trying to understand digital audio on my own for brain modelling research (i'm trying to wire up input to neuralnet, which I've done with a vision component using a camera). [edited...] i forgot to mention that the ultimate goal is to have microphone input and speaker output. I've...
  4. N

    BrainModel: Audio Analysis/Synthesis Software, FFT/Spectograms, Mic/Spkr

    Not sure if this belongs in this forum, its subforums or engineering. Thanks for reading, the post is long. Any suggestions would be grateful. ------------------- Application Field: Brain Modelling Topic: Audio Analysis then Audio Synthesis OS: Microsoft Windows, IDE: MSVC (unless the package...
  5. N

    What is Computational Science?

    to add to what was said above, its typically an interdisciplinary focused on applying computer simulations to another subject field(linguistics, psych, physics, ai, applied math, chem, bio, econ, 3D entertainment media etc ). Some programmes will neglect the other subject field part...and focus...
  6. N

    Which Grad Schools Offer Specializations in C++ or Matlab Modeling?

    look for programmes that are named Computational Sciences & Engineering or Computational Engineerring and Sciences. Or applied mathematics & CS it also depends on what type of modelling you mean...some are just programming for solving mathematicals equatoins.
  7. N

    Thermodynamics or Algorithms: Which Course Should I Choose?

    if you've never taken algorithms before you should take it now...it'll help you along your undergraduate years if you intend to code further... Thermo you could probably pick up the year your graduating or learn on your own...do you have any electives...or better yet ask your chair if thermo...
  8. N

    Programs Computer Science Hopeful Major Help

    Maybe he can develop a portfolio for himself. Tell him to code as many demos of things he can learn by himself perhaps simpl ethings include flocking, building a gameboard or cardgame, simple graphics engine, datastructures. depending on how close you live to Canada Waterloo might be an option
  9. N

    Java Java and other high level languages for computational science

    depends on the computational science that you are looking to do... puremath eg. cryptology or numerical or Nbody or mesh-based comprehension of cache is important as my supervisor and profs have put it a lot of it is throughput. They mock people who talk about MATLAB or java. but we use java...
  10. N

    Biophysics? Computational Neuroscience? M-Theory?

    i took QM I and II found it useless =]...but that depends on the field of physics you interested in(astrophysics was mine though i wish there was more coding involved...) for Consciousness: if your looking at sum of the parts then well your best bet would be to forget physics entirely =] j/k...
  11. N

    Comp Sci Solving C++ 3n+1 Problem - Max Cycle Length w/ Code

    simple test to help you go along way... sizeof(datatype)...
  12. N

    Biophysics? Computational Neuroscience? M-Theory?

    it really depends on what part of computational neuroscience you want to study. There are several fields underlying said topic - physical/chemical basis behind neuronal firing and neuron/cell structure - electrochemical signal behind the firing ignoring the actual atomic/molecular structure -...
  13. N

    Comp Sci Solving C++ 3n+1 Problem - Max Cycle Length w/ Code

    u should be able to declare it as uint32_t...it'd be like using u_int64_t or int64_t.
  14. N

    Comp Sci Solving C++ 3n+1 Problem - Max Cycle Length w/ Code

    x=3*x+1; by pen&paper...calculate when your forloop should terminate given the condition ou have stated cout's or printfs are your friend.
Back
Top