Beantwortet
How can I implement constraints of x1 not equal to x2 in intlinprog ?
Hi, im highly interested in that question and i hope anybody has a better answer then me. I found that in the forum so far: ...

etwa 8 Jahre vor | 0

Beantwortet
ODE45 for a second order differential equation
Hi, transform a n-th order ode into a system of n 1st order ode's to solve it. Matlab documentation example: <https://de....

etwa 8 Jahre vor | 1

Beantwortet
Need matlab(m file) on "jacobian soltions to inverse kinematics"
Hi, the best idea is that you write one ;-)

etwa 8 Jahre vor | 0

Beantwortet
How to solve two coil equation?
Hi again, to solve the last equation numerically you will Need this: <https://de.mathworks.com/help/matlab/ref/cross.html> ...

etwa 8 Jahre vor | 0

Beantwortet
How to solve two coil equation?
Hi, this should work numerically in Matlab - just define your function and use this: <https://de.mathworks.com/help/matlab...

etwa 8 Jahre vor | 0

| akzeptiert

Beantwortet
How to solve two coil equation?
Hi, isn't the angel Pi/4 (upper bound) and 0 (lower bound) for solving the integral?

etwa 8 Jahre vor | 0

Beantwortet
I am getting the error message "Variable 'D' is not fully defined on some execution paths." for this code. please help me
Hi, i think your code does not cover all possible cases. If variable T <= 0.02 when calling the function e.g. x = mpp(10, 0.0...

etwa 8 Jahre vor | 0

Gelöst


How to subtract?
*&plusmn &plusmn &plusmn &plusmn &plusmn &plusmn &plusmn &plusmn &plusmn &plusmn &plusmn* * Imagine you need to subtract one...

etwa 8 Jahre vor

Beantwortet
could anyone help me to overcome the error
Hi, maybe this will help: <https://de.mathworks.com/matlabcentral/answers/82470-how-can-i-convert-cell2mat-when-the-values...

etwa 8 Jahre vor | 0

Beantwortet
Invalid value for OPTIONS parameter InitialPopulationMatrix.
it was a pleasure to me ;-)

etwa 8 Jahre vor | 0

Beantwortet
Invalid value for OPTIONS parameter InitialPopulationMatrix.
Hi, try: options = gaoptimset('InitialPopulation',ki',... instead of options = gaoptimset('InitialPopulation',ki...

etwa 8 Jahre vor | 1

Beantwortet
Invalid value for OPTIONS parameter InitialPopulationMatrix.
Hi, so far i found three problems with your code: 1. replace your ki-variable by populationsize options = gaoptimset(...

etwa 8 Jahre vor | 2

Beantwortet
Invalid value for OPTIONS parameter InitialPopulationMatrix.
To look if your code is working you could set si = 25 and see if it works. Are there any zeros or negative values in your s...

etwa 8 Jahre vor | 0

| akzeptiert

Beantwortet
Invalid value for OPTIONS parameter InitialPopulationMatrix.
Hi, what is the result when you type whos si seems like Matlab doesnt accept this parameter.

etwa 8 Jahre vor | 1

Gesendet


Graph: Node Coloring with Johnson Algorithm
Coloring the nodes of a Matlab graph object with the Johnson algorithm

mehr als 8 Jahre vor | 2 Downloads |

0.0 / 5

Beantwortet
"No module named 'matlab.engine'; 'matlab' is not a package"
Hi, at last I was able to solve the problem for my case. After I have checked several times that the installation was success...

mehr als 8 Jahre vor | 2

Beantwortet
"No module named 'matlab.engine'; 'matlab' is not a package"
Hi, i have the same problem using Windows 10, Matlab 2017a and Python 3.5 (same using 2.7 - then used 3.5). What can i do to...

mehr als 8 Jahre vor | 0

Gelöst


Times 3 problem
When you enter the number, it should return the number multiplied by 3

etwa 9 Jahre vor

Gelöst


Column Removal
Remove the nth column from input matrix A and return the resulting matrix in output B. So if A = [1 2 3; 4 5 6]; and ...

etwa 9 Jahre vor

Gelöst


Basics: 'Find the eigenvalues of given matrix
Find the eigenvalues y for a given matrix x.

etwa 9 Jahre vor

Gelöst


Integer sequence - 2 : Kolakoski sequence
Get the n-th term of <https://oeis.org/A000002 Kolakoski Sequence>.

etwa 9 Jahre vor

Gelöst


Squaring Matrix
Square the following matrix using matlab % A = 1 2 3 4 5 6 7 8 So new matrix should display...

etwa 9 Jahre vor

Gelöst


Array of Ones
Create a 100 X 100 array of ones.

etwa 9 Jahre vor

Gelöst


Add offset to a signal
Produce the following signal: <<http://blogs.mathworks.com/images/seth/cody/add-offset-eqn.png>> You should see a downward...

etwa 9 Jahre vor

Gelöst


Alternating sum
Given vector x, calculate the alternating sum y = x(1) - x(2) + x(3) - x(4) + ...

etwa 9 Jahre vor

Gelöst


Fibonacci sequence
Calculate the nth Fibonacci number. Given n, return f where f = fib(n) and f(1) = 1, f(2) = 1, f(3) = 2, ... Examples: Inpu...

etwa 9 Jahre vor

Gelöst


Pizza!
Given a circular pizza with radius _z_ and thickness _a_, return the pizza's volume. [ _z_ is first input argument.] Non-scor...

etwa 9 Jahre vor

Gelöst


Produce a cosine wave
Produce the following signal: <<http://blogs.mathworks.com/images/seth/cody/cosine-eqn.png>>

etwa 9 Jahre vor

Gelöst


Is A the inverse of B?
Given a matrix A and a matrix B, is A the inverse of B? >>A=[2,4;3,5]; >>B=[-2.5,2;1.5,-1]; >>isInverse...

etwa 9 Jahre vor

Gelöst


Square a Number
Given an input x, return y, which is equal to the square of x.

etwa 9 Jahre vor

Mehr laden