Answered
code for a simple nanogram function
Now roughly a month since the original post, and nobody has answered. I was not sure if this could be a student problem, so I ga...

5 years ago | 0

Answered
How can i define a m by n symbolic matrix?
If m and n are themselves symbolic, you cannot do so. However, you can do this: matfun = @(m,n) sym('a',[m,n]); Now you can us...

5 years ago | 0

| accepted

Answered
Accuracy of polygon approximation
R*2 is not remotely meaningful here, unless you find a way to intelligently extend it to this situation. I would probably find ...

5 years ago | 0

| accepted

Answered
Function value and YDATA sizes are not equal BUT THEY ARE
The expectation is that in the function (here, Cp) the data vector should be the SECOND argument. It needs to be Cp = @(x,T7)...

5 years ago | 2

| accepted

Answered
Help Finding Explicit Solution Non Linear Differential Equation
There is no assurance that ever nonlinear differential equatino you may choose to pose has an analytical solution. In fact, I no...

5 years ago | 0

Answered
Which is the smallest natural number n to which it applies a(n)>10?
The obvious answer is brute force, thus... a_i = 1; a_iplus1 = 1; plot(a_i,a_iplus1,'o') hold on iter = 2; imax = 1e6; wh...

5 years ago | 1

Answered
How to draw a line on a symbolic surface
syms x1 x2 f1 = x1^2+x2^3-9 fsurf(f1); hold on fimplicit(f1,'r') WTP? :)

5 years ago | 0

| accepted

Answered
Trying to do product of eigenvalues collected from a matrix
You don't want to use the product of eigenvalues to determine if a matrix is singular. This is equivalent to computing the deter...

5 years ago | 1

Answered
Output vector in the polyval
format long g p=[1 0 0 0 0 -5 3 21]; x=[10 15 20]; poly_value=polyval(p,x) poly_value = 9999551 170858316 ...

5 years ago | 0

| accepted

Answered
Quadratic/Exponential Best Fit Curve
First, you have 4 data points. Trying to fit a degree 7 (SEVEN) polynomial to that is just silly. Yes, you say quadratic. But yo...

5 years ago | 0

| accepted

Answered
Why are alternative forms for "dbstop in file at location if expression" not documented?
All commands in MATLAB are actually implemented as functions. There is a command/function duality in existence. So you can alway...

5 years ago | 0

| accepted

Answered
How to adjust a cloud point to meet the minimum distance requirement?
Sorry, but no. There is no analytical solution that would provide the clustering that you wish to achieve. You can use clusterin...

5 years ago | 0

Answered
how factor a polynomial into 2 quadratics?
You cannot uniquely factor a 4th degree polynomial into such a pair of quadratics. You may think that you can, but it is provabl...

5 years ago | 0

| accepted

Answered
seven roots of an equation
Your equation is: What you have done in code is terribly confusing. There is no need to use symsum. Can we assume that b is ...

5 years ago | 1

| accepted

Answered
How to get coefficient non linear fit?
% Make up some random data since you gave us none x = rand(50,1); y = 0.3*exp(-2.5*x) + 1 + randn(size(x))/50; plot(x,y,'.') ...

5 years ago | 0

Answered
A better way to do antidiagonal matrix vectorization?
This should not be that difficult. One trick might be to use ndgrid, and then a sort. For example, consider the function adunrol...

5 years ago | 2

Answered
why in this function they use empty square brackets?
It is not a dumb question at all, because the syntax used by MATLAB to delete a row or column of an array may not be obvious. Bu...

5 years ago | 1

| accepted

Answered
What is the problem with my code? How to do integration of matrix which consists integral variable?
M is a SYMBOLIC variable. You use int to integrate it, not integral. syms x; M = [x x^2]; int(M,[0,12])

5 years ago | 0

| accepted

Answered
Subs with 2 numbers returns a number
Simple enough. Convert the original expression to a string. Now just do string processing, with finds and replace operations. C...

5 years ago | 0

Answered
Solve second order non linear differential equation
You will not be able to use bvp4c directly, since it will use collocation. That will fail on an infinite domain. One option mig...

5 years ago | 0

Answered
convert signal to morse code
As @dpb suggested: Use findpeaks to locate each peak. (Ignore the tiny ones. So anything that is significantly above the baseli...

5 years ago | 1

| accepted

Answered
Writing exponent in pplane for Matlab
pplane is not part of MATLAB, so it must be a package from the file exchange, or some other source. You might want to contact th...

5 years ago | 0

Answered
Assign the same variable to all elements of a Matrix
As with Matt, I have not used the code, but this should work. M = repmat(sdpvar(1,1),[10 10 10]);

5 years ago | 0

Answered
Nested for loop to generate random matrix
No. That simply is not true, that only the first row and column are random. for i = 1:10; %Generates random angle for each par...

5 years ago | 1

Answered
write a polynomial answer in one operand
I assume that is a prime outside of the parens, which makes no sense unless you intend it as the complex conjugate. But even the...

5 years ago | 0

Answered
Does intlinprog find a local minimum or global minimum?
Another issue is that it is easy to formulate a problem with multiple solutions, all equally good. intlinprog should find one of...

5 years ago | 1

Answered
Using curvefit for conditional functions
You CANNOT fit that model. Why not? a and b are not independent parameters. They look as if they are. Ignoring the part where ...

5 years ago | 0

| accepted

Answered
Can't solve integrate with unknown value and after an equation with it
First, you don't need to use vpasolve. Solve will do. Leave it in a fractional form, rather than converting to a finite number o...

5 years ago | 0

Answered
Question about vectorized fminsearch using flipud
I fail to undertand your question. It minimizes what you give it. If the flipud is in there, your objective function is differen...

5 years ago | 0

Answered
Find first n roots of transcendental equation
First, the function you have written does not seem to have multiple roots. In fact, the only solution it seems to have is zero. ...

5 years ago | 0

Load more