Answered
MATLAB in unexpected places
From the Acknowledgements section of _Spectral methods in MATLAB_ by Lloyd Nicholas Trefethen: "... there is a brass plaque ...

14 years ago | 1

Answered
Difficulty opening MATLAB file
I get the same problem, so maybe it is corrupt. You should try contacting the authors.

14 years ago | 0

Answered
Curve fitting - periodic function
You could try selecting "Sum of sin functions" for the type of fit.

14 years ago | 0

Solved


Times 2 - START HERE
Try out this test problem first. Given the variable x as your input, multiply it by two and put the result in y. Examples:...

14 years ago

Answered
Random sample without replacement
Here is a recursive function that will return one row of your matrix |C|: function y = randsampleWithoutReplacement(populat...

14 years ago | 0

| accepted

Answered
ode15s
If you are solving something like [t,x] = solver(odefun,tspan,y0) and you want the time derivative at each point |t(i)|,...

14 years ago | 0

| accepted

Answered
Is dynamic interpolation of input of function for 'quad' integration possible?
Given that your data are irregularly spaced, you may have to use interpolation after all. If your points are |(xdata,ydata)|, yo...

14 years ago | 0

| accepted

Answered
ode15s
You could use <http://www.mathworks.com/help/techdoc/ref/deval.html deval>. *EDIT*: Here is a modified version of the example...

14 years ago | 0

Answered
Is dynamic interpolation of input of function for 'quad' integration possible?
Any increase in accuracy based on interpolating |a| and |b| would probably be illusory. If your points are regularly spaced, you...

14 years ago | 1

Answered
Finite-Sum Function
|S_N| is the output, but the function name is |S|. Use, e.g., S(10) (you'll need to input a number).

14 years ago | 0

| accepted

Answered
fmincon not optimizing over one variable
If your function has zero derivative with respect a variable, it won't vary that variable.

14 years ago | 0

Answered
Trouble with ez-plot
The syntax of your command is wrong. This is how you do it: f = @(sig) sig.^3-.120*sig.^2-11.8*sig-(-844); ezplot(f,[-200,...

14 years ago | 0

| accepted

Answered
Triple Numerical Integration with function boundaries
Here is a sketch of the approach: First, define your function to be integrated, e.g., f0 = @(x,phi1,phi2) 1./(h1(phi1,ph...

14 years ago | 0

| accepted

Answered
Convert matrix into the tensor
This is not a tensor, which has a specific meaning. If you had the same number of experiments per substance, you could turn it i...

14 years ago | 0

| accepted

Answered
Problem with optimization using fminunc + GradObj
You have more errors in your gradient. The correct gradient is G = [-600*x(2)*x(1)^2 + 600*x(1)^5 - 2+2*x(1) ...

14 years ago | 1

| accepted

Answered
Funny situations while helping others on MATLAB Answers
I like this exchange: Q: hello, please send me the* speech database* for my project titled,"automatic speaker recognition" th...

14 years ago | 1

Answered
Question About bar plot
Yes, by splitting your bar plot into two. Here is a simple example: % First bar plot xdata = 1:9; ydata = rand(9,1); b...

14 years ago | 0

| accepted

Answered
Save command: List of variables to save can vary
Here is how to do it with cell arrays: a = rand; d = rand; w=rand; condition1=logical(randi([0 1],1)); % This is just for ...

14 years ago | 0

| accepted

Answered
PLOT problem
I think you are trying to do something like this: x = 1:100; c = cos(x); plot (x,c)

14 years ago | 0

Answered
Passing both the the variable name and value to a function
You can use <http://www.mathworks.com/help/techdoc/ref/inputname.html inputname> inside the function to find the names of the va...

14 years ago | 2

| accepted

Answered
Converting a cell to string
Use <http://www.mathworks.com/help/techdoc/ref/char.html char>.

14 years ago | 0

Answered
Problem with optimization using fminunc + GradObj
It's a sign error. The gradient should be G = [-2 + 2*x(1) - 400*x(2)*x(1) + 400*x(1)^3 200*x(2) - 200*x(1...

14 years ago | 1

| accepted

Answered
Getting better accuracy with Lsqcurvefit
The problem may be that your two parameters have such very different magnitudes, so the fit can probably not discriminate the se...

14 years ago | 0

| accepted

Answered
toolbox functions do not work
It may be that you have the toolboxes installed, but don't have the license to run them. See <http://stackoverflow.com/questions...

14 years ago | 0

| accepted

Answered
Is it possible to have output in an input format?
It would take a little programming. Your example could be done with disp(['var1 = [',num2str(var1),']']) but you'd need ...

14 years ago | 0

Answered
how to add a moving average filter
See <http://www.mathworks.com/help/techdoc/ref/filter.html filter>.

14 years ago | 0

Answered
What is missing from MATLAB?
An equivalent of the UNIX command |wc| that allows one to determine useful information about the size of a file before reading i...

14 years ago | 1

Answered
Problem with quad2d integration
When in doubt, just put a dot in front of all |^|'s, |*|'s and |/|'s. Also, next time you ask a question, it would help if you p...

14 years ago | 1

Answered
non-rectangular text file upload
This will do it: fid = fopen('data.csv'); tline = fgetl(fid); while ischar(tline) ind = find(tline==',',1,'first'); ...

14 years ago | 1

| accepted

Answered
Time data conversion
Here are two conversions you could do: datevec('2012-01-25 16:11:10 645','yyyy-mm-dd HH:MM:SS FFF') datenum('2012-01-25 16...

14 years ago | 1

Load more