Recent content by pazmush

  1. P

    Leas squares curve fit problem

    The main problem is that I have no idea what I am doing. But second to that I am attempting to fit a curve to some data using the equation y = ((1/A(x-B)^(C+1))+D)^-1 if that makes sense I need to get the values for A,B,C and D and so have been looking into lsqnonlin but I am having...
  2. P

    Programs Navigating Changing Interests in PhD: Advice Needed

    I don't think I was really ever thinking about not finishing the PhD. My worry is really whether there will be opportunities for me to move away from this field but still pursue research, in particular in physics?
  3. P

    Programs Navigating Changing Interests in PhD: Advice Needed

    Hi I'm doing a PhD in england and am worrying that I have gone into the wrong subject area(organic electronics), I only have a year left and feel like I can complete it but find myself drawn away from my subject area (i originally did a physics degree). What do you think I should do...
  4. P

    Anyone know the dielectric constant of OTS?

    umm, well I was treating silicon, does that make a diffeerence? I fdound a reference that has dielectric constants for alkly-trichlorosilanes and it gives it at between 2.4 and 2.5...
  5. P

    Anyone know the dielectric constant of OTS?

    Anyone know the dielectric constant of OTS?
  6. P

    LaTeX Saving a Figure from Wiki to EPS for Latex

    I usually use .png files in LAtex and you can save as straight fro paint
  7. P

    Flip Columns in Origin - Bottom to Top?

    Can anyoune tell me how you flip a column in origin so you are reading it from bottom to top? I don't mind if it means making a new column. Or if this isn't possible then is it possible to do a differential when taking the bottom values first?? If that makes any sense Thanks
  8. P

    Disoersion relation and lattice constants

    Dispersion relation and lattice constants I need to be able to calculate the period (which I believe is the lattice constant) for a 1D crystal given the energy wavevector relation. Is this possible? I also have to find the Bravais lattice of a 2D crystal give a similar relation. What is it...
  9. P

    Gaussian Fitting: Get Help Now!

    I have a set of data for an absorption spectra that I plot the firtst derivative of and it gives me a gaussianish plot, I then want to fit it with a gaussian and what I've been doing so far is calculating the mean and variace of the spread and then using them in the equation. Although this does...
  10. P

    How can I seed srand() with time in microseconds in Visual Basic/C++?

    Cool that seems like a good plan, unfortunately, i don't know how to use QueryPerformanceCounter(), do you think you could explain it a little bit? Thanks
  11. P

    How can I seed srand() with time in microseconds in Visual Basic/C++?

    Hi Im using Visual basic c++ and was wonderig what the easiest way was to seed srand() with the time in microseconds is. Thanks
  12. P

    How can I add a character to the end of a string?

    yeah, that does work, but i was hoping to be able to just add characters on there own
  13. P

    How can I add a character to the end of a string?

    got the first bit working, had to change _a[_N+1] to _a[_N-1] has anyone any advice on where to start with adding from the other side i.e. at the moment i can add string a("hello"), b; b = a+'f'; but i can't do b = 'f'+a ?
  14. P

    How can I add a character to the end of a string?

    hi, this is what I've got so far and what I'm wanting to do is add a char to the end(and eventually the beginning) of the string but i can't seem to get it to work, do you think I've got the right idea #include "string.h" #include <iostream> using namespace std; using namespace PC3762...
Back
Top