답변 있음
Solve a system of linear equations
I am confused. You say that you know how to solve the problem using lsqnonneg. So just use it! n = 30; Y = rand(30,n); S = r...

29일 전 | 0

답변 있음
generating every possible trajectory in a workspace
Um, no. There are infinitely many possible trajectories, if we consider the variables as continuous. But even if all variables w...

대략 1개월 전 | 0

| 수락됨

답변 있음
How do I request participation or sponsorship from MathWorks on behalf of my social organization at my University?
Answers is not the correct place to ask your question. Instead, I would contact support directly. Possibly through this link: h...

대략 1개월 전 | 0

답변 있음
Solving tridiagonal Matlab matrix using Gauss siedel ( can't use other method )
Why in the name of god and little green apples are you using Gauss-Seidel for this? (I can only assume this is a homework assign...

대략 1개월 전 | 1

| 수락됨

답변 있음
How do I change my code so that the numbers 1112, 2111, 1211 or 1121 work in this code to reach Kaprekar's Constant?
Numbers in MATLAB do not have leading zeros. Sorry. That is not a valid number, just a string of numeric digits. If you need le...

대략 1개월 전 | 1

| 수락됨

답변 있음
What Does the Symbolic Math Toolbox Mean by 0 < s When s is Complex?
Just test it yourself. :) Admittedly, it may not have been obvious to perform this test. But we can use it to learn how MATLAB s...

대략 1개월 전 | 0

| 수락됨

답변 있음
how can I calculate my expression with double integration?
The important takeaway to use is, you CANNOT perform arithmetic operations between a pair of function handles. Maybe you think y...

대략 1개월 전 | 0

답변 있음
fsolve with bound constraints - transformation method
The transformation need not be one to one. For example, a common and reasonably good way to perform an optimization subject to b...

대략 1개월 전 | 0

| 수락됨

답변 있음
How to get a random possible solution from 'solve' function when getting unknown parameters z1 and conditions
Solve cannot return a random possible solution. Wanting code to do what it is not designed to do will never be sufficient. If ...

대략 1개월 전 | 1

| 수락됨

답변 있음
How to get a surface plot for the given function to know how many minima are there?
You cannot plot 4 independent variables. In fact, you would need 5 dimensions to plot, since you want to plot the result of that...

대략 1개월 전 | 0

답변 있음
I can't comput the following commands
Sure you "can". It is just that MATLAB fails due to an error. :) Anyway, you seem to think an if statement applies to each elem...

대략 1개월 전 | 0

답변 있음
How to plot four variable vector-valued function in MATLAB?
It is no problem. Well, at least not if you have a hyper-dimensional holographic monitor. (Mine is broken, and awaiting parts de...

대략 1개월 전 | 0

답변 있음
Not auto change sec(x) to 1/cos(x)?
The problem is, which form is simpler? Simple in your eyes need not always be simple in the "eyes" of your computer. The point ...

대략 1개월 전 | 0

답변 있음
How to count how often a variable returns to zero and then increases from zero
It appears this parameter never goes negative. Are your sets ALWAYS such that a zero is always alone? So when it hits zero, it ...

대략 1개월 전 | 0

답변 있음
Fastest possible prime number detection without using break or return
You did write working code to find primes. Well done there. But the fastest code? Without breaks, or returns. Easy peasy. Write...

대략 1개월 전 | 0

답변 있음
I am new to matlab and I am trying to get prime numbers
But these loops will not result in prime numbers. (As you have found.) I think you are trying to do a simple sieve, or something...

대략 1개월 전 | 2

| 수락됨

답변 있음
How can i calculate the area under two curves that intersect?
1. Subtract the two curves. 2. Take the absolute value of the difference. 3. Compute the integral. Note that you ...

대략 1개월 전 | 1

답변 있음
the arc using the chord
Your question is far too general, too vague to have an answer. There are infinitely many "arcs" that will pass through two poin...

대략 1개월 전 | 0

답변 있음
MIL SIL equivalence check.
A literally impossible question to answer. Both far too broad, too vague, and yet extremely specific. It is not even clear what ...

대략 1개월 전 | 0

답변 있음
How do I create a variable H which contains the product of 5 and the values of B in the 1st and 9th rows, and the 1st and 2nd column.
Ok, first, you do understand how to extract the elements from B. Good there. I think maybe the question wording is confusing you...

대략 1개월 전 | 1

| 수락됨

답변 있음
Is this a logical Error in Matlab ? exp (pi*i*6) = 1.000000000000000 - 0.000000000000001i. WHY an i component ?, should just be 1
Remember that pi in MATLAB is not truly pi, any more than pi is 3.14, or even 3.14159. pi is a transcendental number. There are ...

대략 1개월 전 | 2

| 수락됨

답변 있음
How can MATLAB's extensive suite of functions for data analysis and visualization be utilized to import, process, and analyze simulation data, including performing frequency a
Um, learn MATLAB. That means you need to learn how to read the help, the documentation for those tools. Start by doing the bas...

대략 1개월 전 | 0

답변 있음
Symbolic integration has 3 solutions based on integration variable range, how to extract one of these?
Or do this: syms r umax Radius mom_2 = int((umax*(1-r/Radius)^(1/7))^2*2*pi*r,r,0,Radius) subs(mom_2,Radius,1) Note that it ...

대략 1개월 전 | 0

답변 있음
How do I find the most stable N consecutive numbers?
The mean difference? What is that exactly? In terms of mathematics? Are you looking for the 50 element consecutive subset with ...

대략 1개월 전 | 0

답변 있음
Possibly spurious solutions - Matlab blocked with no answers
You are attempting to solve for an analytical solution of 12 simultaneous nonlinear equations, in 12 unknowns. This, even if it ...

대략 1개월 전 | 1

| 수락됨

답변 있음
Solving goal programming problem with MATLAB
READ THE ERROR MESSAGE! What did it say? "Failure in initial user-supplied objective function evaluation. Optimization cannot c...

대략 1개월 전 | 0

답변 있음
How to set an axis with arbitrary, but equally spaced, scaling.
You could not plot versus the numbers 0,1,2,3, but then set the x-tick labels as you wish? x = [1/3 1/2 1 inf]; xfake = [0 1 2...

대략 1개월 전 | 1

| 수락됨

답변 있음
All possible combinations of a matrix
Did you intend to write 1.024^13? This is not even an integer, and only a little larger than 1. 1.024^13 So there are 1.3611 u...

대략 1개월 전 | 1

답변 있음
cubic spline interpolation - mixed boundary conditions possible?
You generally don't want to do this. That is, fit one spline, then construct a second spline to match the first. The result will...

대략 2개월 전 | 0

답변 있음
what's the relation between A , B and M,G for this Nonlinear system of equation ?
This is not even remotely a question about MATLAB. As such, it should arguably not even be on Answers. But I have a minute to re...

대략 2개월 전 | 0

더 보기