Beantwortet
How to fit multiple gaussian in a curve ?
Easy enough. You NEED good starting values though. Crappy starting values --> crappy results. load dsp.mat plot(f,pxx) grid o...

mehr als 3 Jahre vor | 0

| akzeptiert

Beantwortet
replace the values by nearest mean of the matrix
Using my inpaint_nans.... y = randi(10,[7,7]) - 2 y = 0 5 0 8 1 0 2 6 5 7 -1 ...

mehr als 3 Jahre vor | 0

Beantwortet
Going back to unvisited node through visited node by minimum weight of edge
Why are you not using the existing graph tools to solve graph problems? It is never a good idea to write your own code to solve ...

mehr als 3 Jahre vor | 0

| akzeptiert

Beantwortet
my objective function should return less than 10^-6.
First, suppose your car had a problem. Would you take a picture of your car and send it to your local auto mechanic? Would they ...

mehr als 3 Jahre vor | 0

Beantwortet
plot a matrix in 3D
DID YOU TRY IT? Why not? So, given some arbitrary complex matrix, how do you compute the magnitude? ABS does that. How you you ...

mehr als 3 Jahre vor | 0

Beantwortet
Trapezoidal numerical integration of f(y) = ( 1 / x(y) ) dy
You are confusing yourself here. Probably because you have created this variable x that has gotten you confused. But let me give...

mehr als 3 Jahre vor | 1

| akzeptiert

Beantwortet
lsqnonlin providing very poor model fits
You have not posted the data, so it is impossible to test your code. Regardless, there are several common reasons why a solver ...

mehr als 3 Jahre vor | 0

Beantwortet
What is the purpose of zero function?
Consider these two codes: tic x = []; for i = 1:100000 x = [x,i]; end toc clear x tic x = zeros(1,100000); for i...

mehr als 3 Jahre vor | 1

Beantwortet
While loop that stops if certain number is inserted
You should read the help for while. What you wrote was not even close to valid MATLAB syntax. Look at the examples found in the ...

mehr als 3 Jahre vor | 0

Beantwortet
multiplying row vector by a scalar
I think @Kay needs an example. A = ones(4,3) B = 1:3; A(3,:) = A(3,:).*B

mehr als 3 Jahre vor | 0

Beantwortet
Doubt regarding angles of tan inverse
atan2 has nothing to do with it. At least not based on anything you said. The difference between angles can exceed the range yo...

mehr als 3 Jahre vor | 0

Beantwortet
Bessel Function Calculation in Matlab
Several common problems in this, regardless of whether you got the factiorial/gamma problem solved. You want to use a series so...

mehr als 3 Jahre vor | 1

Beantwortet
somebody help me please! I've gone over the irritation of approx_sqrt and the only way I've got each value of the function while using a calculator it was if I used y=2
The site seems to want an answer to your question, and we just answered you in the comments. Oh well. But seriously, your solut...

mehr als 3 Jahre vor | 0

Beantwortet
How to remove noise (unwanted data)
Finding and removing what I might call singleton outlier's while leaving in place small amounts of noise can be a difficult task...

mehr als 3 Jahre vor | 2

| akzeptiert

Beantwortet
How to check the proportionaly of columns of a complex rectagular matrix?
Checking if two vectors (in your case, just columns of a matrix) are proportional is pretty easy, as well as then computing the ...

mehr als 3 Jahre vor | 1

| akzeptiert

Beantwortet
error with function ode45
You need to tell the ODEsolver FROM where, TO where will it integrate? So will the integration be, perhaps FROM 0 to 0.5? All y...

mehr als 3 Jahre vor | 0

Beantwortet
save loop data with non integer steps
acvalues = 0.01:0.01:1; detectorsignal=zeros(size(acvalues)); for ind = 1:numel(acvalues) absorbing_coeff = acvalues(in...

mehr als 3 Jahre vor | 0

Beantwortet
Write a function quadraticSolver that takes one 3-element array input and returns two outputs (root condition and root values). Use an if-elseif-else structure in your code.
The error message apparently tells you your array is composed of uint8 numbers. How do you convert a variable of integer type,...

mehr als 3 Jahre vor | 1

Beantwortet
Creating an array of partial sums of certain array
For example, consider the vector (I've used syms here, so you can see that it works, and generate the correct terms. Had a been ...

mehr als 3 Jahre vor | 2

Beantwortet
Numeric approximation of infinite sum
Um, first, legendreP will return either 1 or -1, depending on the value of n. So effectively, we can replace that call to Legend...

mehr als 3 Jahre vor | 0

Beantwortet
how to solve two equations
Note that the two equations are fully uncoupled. This means U20 appeared only in one equation. It has absolutely no impact on th...

mehr als 3 Jahre vor | 0

Beantwortet
How to find a root and know if fsolve or fzero is better?
IF you have a function of more than one variable, you ALWAYS need to use fsolve. fzero would not apply. IF you have a function ...

mehr als 3 Jahre vor | 2

| akzeptiert

Beantwortet
Collection of Squares RGB Matrix
Really pretty simple. You have a list of colors. 24 of them, apparently. The thing is, all the examples you would see will hav...

mehr als 3 Jahre vor | 0

| akzeptiert

Beantwortet
Finding Limits of Two variables
As stated in my comment to @Sulaymon Eshkabilov, the one variable at a time solution is rarely correct. Again, I'll give my exam...

mehr als 3 Jahre vor | 0

Beantwortet
Finding the length of the longest continuous streak of a same number for each row of a matrix
When you have a question where there is some specific issue that you should know is a problem, TELL US ABOUT IT. Don't keep it a...

mehr als 3 Jahre vor | 1

Beantwortet
how to get rid of the too many arguments error for "and" while keeping output the same
If you write invalid MATLAB synrtax, then you need to expect your code to fail. Perhaps some of those lines might be valid in ot...

mehr als 3 Jahre vor | 0

Beantwortet
how to plot a signal in the time domain?
Nope. No other methods. Plot will plot what you give it. A common mistake made is to not understand that a vector of numbers is...

mehr als 3 Jahre vor | 0

Beantwortet
How to save a symbolic function into a .txt file
You don't need to display it in the command window! For example, this expression will have 10001 terms in it. syms x P = expan...

mehr als 3 Jahre vor | 0

Beantwortet
Why is 'Character#' not a valid mathlab variable name?
MATLAB itself can tell you. Just ask. why why why why why Do you want a better reason? Just because. Seriously, does there...

mehr als 3 Jahre vor | 0

Beantwortet
How can I find out the index of the points here?
Pretty easy. (Easier yet, IF the lines were drawn at right angles. If they were, then we could do it in literally one line of co...

mehr als 3 Jahre vor | 1

| akzeptiert

Mehr laden