已回答
A quick guide about solving equations (optimization problem)
Yes this problem can be solved with functions in the optimization toolbox.

10 years 前 | 0

已回答
How do I fit this equation?
So you have t, M(t) and you want to find what? If you have your function set up to give you predicted M(t) for a given set of...

10 years 前 | 0

提问


Symbolic toolbox speed comparisons on 2010a versus 2012b for Mac OS?
On my Macbook Pro, late 2012 (non-retina) model, Mac OS Ver 10.8.5, 2.6 ghz i7, 8gb ram, I found that the symbolic toolbox may b...

11 years 前 | 0 个回答 | 0

0

个回答

已回答
Integration of a vector
Have you looked at quad() or trapz() for numerical integration? doc trapz doc quad

11 years 前 | 0

| 已接受

已回答
fminsearch and different results on estimated parameters.
fminsearch is based on a nelder mean simplex which does not require knowledge of the jacobian. For fitting parameters in odes o...

11 years 前 | 0

已回答
I need a function that removes scalar values of zero along a vector.
You could use I= find(ne(a,o)) or logical indexing should work.... bMod = b(ne(a,o))..... I think this would work. Need to c...

11 years 前 | 0

已回答
Is the nVidia GPU the only one I can use for my Matlab computation?
You can't. First requirement is that you have the parallel toolbox. Second requirement is that you need a nVidia graphics card....

11 years 前 | 0

| 已接受

已回答
Make a loop to calculate molecular weight
I really hate doing others homework... <http://www.mathworks.com/matlabcentral/fileexchange/26139-molecular-weight-calculator...

11 years 前 | 0

已回答
xlsread on Mac in basic mode
You are not going to like this answer. I am using Mac OS X 10.8.5, Office for Mac 2011. When I was developing this "code", it ...

11 years 前 | 0

提问


Calling the same function from within the function??
So I ran into this very interesting file from the file exchange... <http://www.mathworks.com/matlabcentral/fileexchange/26139...

11 years 前 | 4 个回答 | 1

4

个回答

已回答
Fast ODE45 with for-loops
The infamous double post.... Asked in Newsgroup and answered. Try parfor in the parallel toolbox. If your computer has multico...

11 years 前 | 1

| 已接受

已回答
how can i use GPU when i dont have the NVIDIA graphics card?
Is this an integrated card? I was under the impression that Intel only makes integrated graphics cards. If so, I don't think y...

11 years 前 | 0

已回答
Best way(s) to master MATLAB?
Is it improper to answer a question with a question?? One can Master Matlab?? All of these links are very nice. I thoug...

11 years 前 | 2

已回答
3d surfaces in matlab
doc surf doc mesh k = 5; n = 2^k-1; [x,y,z] = sphere(n); c = hadamard(2^k); surf(x,y,z,c); colormap([1 1 0...

11 years 前 | 0

| 已接受