I have a 400x1 vector T in Matlab which is a function of another 400x1 vector E. I have these two vectors. I had a few questions :
How do I transfer these two vectors to Mathematica
I want to write T as a function of E so that I can use NIntegrate to integrate T(E) over E with some tweaking. How do I do that?
How do I do that?you can try http://matlink.org/ package also see this is-it-possible-to-export-the-equations-from-mathematica-to-matlab with link to ToMatlab package you can use. You can also save your matlab data to .mat file, and import it from Mathematica. see format/MAT.html – Nasser Mar 13 '18 at 03:53even if I transfer the vector, how do I make it as function of E, so that I can use NIntegrateI do not know how to do this, since description is not clear to me, may be someone else would know and help. – Nasser Mar 13 '18 at 04:01T[E]from the two vectors and integrate that function? Then you should look at whatInterpolationcan do for you... – Albert Retey Mar 13 '18 at 09:30