Réponse apportée
How can I find all n-bit semiprime numbers?
Ok, I'll give in. A reasonable question, with a reason to be asked. Given a valid reason for the question, I am actuually quite ...

presque 4 ans il y a | 0

| A accepté

Réponse apportée
generate a random number base on pdf function
First, is that the PDF of a random variable? If it was, the integral would be 1. syms x P_x = x/2 + 1/2; int(P_x,-1,1) And o...

presque 4 ans il y a | 1

| A accepté

Réponse apportée
Can we choose step size rule in fmincon?
If you could control the stepsize, then it would damage the convergence properties of a tool like fmincon. Sadly for you, this i...

presque 4 ans il y a | 0

Réponse apportée
Describe a colormap in the legend of a plot
Hard to put it into a legend, since legend is not designed to do that. Far easier (one line of code) to just put a title above t...

presque 4 ans il y a | 0

Réponse apportée
An example of a large matlab project
Look on the file exchange. You will see many such submissions. I have at least a few such, with at least one where I spent multi...

presque 4 ans il y a | 0

| A accepté

Réponse apportée
Rate of Change - Derivative of experimental data
If your data is smooth enough, then the direct gradient calls that Star shows are ok. The problem is, if there is any noise in y...

presque 4 ans il y a | 0

Réponse apportée
I did not get any email for activation key. My recent purchase order is complete.
Answers is not customer support. Answers is a volunteer forum. we have no ability to help you. We have no access to any database...

presque 4 ans il y a | 1

Réponse apportée
Putting one matrix a varying number of times along the diagonal of another matrix
A = rand(3); n = 50; Acell = repmat({sparse(A)},[1,n]); B = blkdiag(Acell{:}); spy(B) Note that I made A sparse in there, s...

presque 4 ans il y a | 0

| A accepté

Réponse apportée
How to use File exchange
It does not matter that you use a mac or not. Save the top level folder on your search path. So use pathtool or addpath. Then sa...

presque 4 ans il y a | 0

Réponse apportée
Hello, I did a for loop but my friend told me it is not the correct matlab syntax. Can anyone help me the for loop is in the description below:
for xa=1; This is not a loop. It does nothing but assign the value 1 to the variable xa. NOTHING. No loop. Instead, it looks l...

presque 4 ans il y a | 0

Réponse apportée
Output Symbolic Trig Math in Degrees
If you use cos and sin, terms like this are meaningless, if the 90 is a number in degrees. Well, let me just say you will get me...

presque 4 ans il y a | 0

Réponse apportée
out of memory error
Um, 1e20 rows? Seriously? Do you have that much memory? Clearly not, since your computer is throwing up at an 1e8 by 27 array. E...

presque 4 ans il y a | 3

Réponse apportée
How to numerically integrate the planar equations of motion?
You need to learn how to write a function handle. What you wrote was incorrect syntax. Do you see the spare comma, AFTER the par...

presque 4 ans il y a | 1

Réponse apportée
Converting to scientific notation in matlab
We are not a "team". We are just a number of people who act as complete volunteers, individually. You cannot "represent" it tha...

presque 4 ans il y a | 0

| A accepté

Réponse apportée
Why the result in curve fitting tool shows a different graph in plot?
@Hao Tu (This is only a followup, and since you already understand the issue, merely a clarification to Steven's accurate answe...

presque 4 ans il y a | 2

Réponse apportée
What is the difference between backward slash vs forward slash in MATLAB?
BOTH of them are linear algebraic solutions. Where matrices are involved, they solve subtly different problems. A\b solves the ...

presque 4 ans il y a | 2

Réponse apportée
Fmincon makes an extremely big jump in parameter search
I think you do not understand how an optimization tool works. Those first calls to your objective are there to differentiate it...

presque 4 ans il y a | 1

| A accepté

Réponse apportée
How to smoothen a plot?
Simple. Delete the points in the beginning of the curve that give you the spikes. WTP? They will be easy enough to spot, as they...

presque 4 ans il y a | 0

Réponse apportée
How to write code for Assignment problem using GA matlab tool.
Does GA allow you to specify that some variables are integer? (Yes.) Does GA allow you to specify lower and upper bound limits ...

presque 4 ans il y a | 0

Réponse apportée
Solving a System of Trig Equations
If the only unknown is theta1, then what is y? If you actually have a value for y, then you have two equations in one unknown v...

presque 4 ans il y a | 0

Réponse apportée
Solve Equation and Plot it
Easy peasy. Essentially one line of code once you define the various constants. syms f_1 f_2 alpha = 0.4207; skalar = 4.5375;...

presque 4 ans il y a | 0

Réponse apportée
Declrarion of an array using tilde (~). what is the correct way of using it, because my code prompts me incorrect use of tilde.
This is a test: if i == D(k) It is the correct way to use == because == is a comparison operator. However, this other line is...

presque 4 ans il y a | 1

Réponse apportée
Methods to create arrays of NaN
A NaN is a nan. A NaN by any other name, is still just a NaN. But there are faster and slower ways to make them, and surely the...

presque 4 ans il y a | 0

Réponse apportée
maximization problem , fmincon optimization
syms x y objxy = ( -.858*x-.04182*y-1.645*sqrt((.5882*x -.055*y).^2 + (-.0558*x +.352*y).^2 )); If x+y == 1 then we can replac...

presque 4 ans il y a | 1

| A accepté

Réponse apportée
How can I plot f(x,y) in xy plane
help fsurf

presque 4 ans il y a | 0

| A accepté

Réponse apportée
Should we always search for the global minima in our optimization problem?
Yes. And, no. Amazing how the anwer is often, well, it depends... You do want to find the true global min. Yes, that makes sens...

presque 4 ans il y a | 1

| A accepté

Réponse apportée
Find smallest Eigenvalue and the corresponding eigenvector.
Just compute the matrix Ainv = inv(A); Now use your code on the matrix Ainv. This works because the smallest eigenvalue is no...

presque 4 ans il y a | 1

| A accepté

Réponse apportée
How to store values in summation for loop?
You understand how to index a variable, thus k(i). But when you write this: s = s + (stuff) It increments ALL elements of the ...

presque 4 ans il y a | 0

Réponse apportée
probability distribution from a simple vector
Note that the use of meshgrid is wildly inefficient, if all you want to know is count the frequency of one number following anot...

presque 4 ans il y a | 0

Réponse apportée
How to interpolate a matrix of 1x10 into 18x1800
You can't. That is, you cannot interpolate the singleton dimension into something of size 18. As a point of comparison, suppose...

environ 4 ans il y a | 0

Charger plus