답변 있음
Get the coefficients in a vector from cftool ?
You'll need to do some reshaping as fit expects column vectors for x, y and z. If I have my dimensions correct, something like t...

10년 초과 전 | 0

답변 있음
Variable 'a' is undefined on some execution paths.
It is really useful and much easier for folks to read code if you put it in Code formatting. Also, as good practice, I recommend...

10년 초과 전 | 0

답변 있음
Why am I getting errors with this code?
There are a few issues here. First of all, you cannot declare functions in a standard m-file script. They have to be in separate...

10년 초과 전 | 0

| 수락됨

답변 있음
polyfit in a for loop
Firstly, this is a poorly conditioned problem. You are trying to fit a straight line through a single data point, so there is no...

10년 초과 전 | 1

| 수락됨

답변 있음
Optimal Method For Saving Large Amounts of Data To Read Into MATLAB
While I'm sorry to say that I don't have a direct solution for you, perhaps you will get some useful ideas from these blogs on h...

10년 초과 전 | 1

답변 있음
p-values out of cftool fitting result
To extract the coefficients use the "fit" function.... [fitobject,gof,output]=fit([x, y], z, 'poly22'); fitobject.p00, f...

10년 초과 전 | 1

| 수락됨

답변 있음
Scale beta distribution in a given interval
For a standard Beta distribution, our random variate x, exists in the range 0 to 1. First we start with a transformed variabl...

10년 초과 전 | 1

| 수락됨

답변 있음
how can I split an array into n arrays?
One possible option is to use mat2cell... C = mat2cell(X, size(X,1)/13.*ones(13,1), 2); Each cell of C now contains a 29...

10년 초과 전 | 0

답변 있음
what is cos 30?
MATLAB also has the cosd() function, so you can use cosd(30). Have a look at the trigonometry documentation for other similar f...

10년 초과 전 | 2

답변 있음
Generating a population randomly starting from some parameters
If your inputs X are distributed then Q will also be distributed. So when you say you want to determine Q, do you mean the distr...

10년 초과 전 | 0

답변 있음
how to get the function as the sum of other functions?
The easiest way would be to set it up your function as something like... sumf = @(x) sum(energy - laa .* (1-exp(-x)) ) ...

10년 초과 전 | 0

| 수락됨

답변 있음
For loop for applying filter for each column
Xnew is not indexed. You should have Xnew(:, i). You could do this without the loop. One such way would be... Xnew = X -...

10년 초과 전 | 1

| 수락됨

질문


MATLAB 2014b missing GUIDE elements
I started creating a GUIDE GUI in 2014a and have just upgraded to 2014b. I was aware that some GUI elements may be hidden due to...

거의 11년 전 | 답변 수: 2 | 5

2

답변