Respondida
How to implement such function?
Basically, just replace f(x) with f. E.g., f = constant; : f = coeffVector(i) * cos(i*x) + f; You could also do this wit...

alrededor de 7 años hace | 0

Respondida
How to from I(x) to permutation and from permutation to I(x)
E.g., >> Per Per = 0 1 2 3 0 2 3 1 0 3 1 2 3 2 0 1 ...

alrededor de 7 años hace | 0

Respondida
case of two mappings
Not sure which one is first, but maybe one of these is what you want? >> mapping1 = [0 1 3 2] mapping1 = 0 1 3 ...

alrededor de 7 años hace | 0

Respondida
what wrong about this error
The error message appears when you have a mismatch in the number of elements on the rhs and the number of elements on the lhs. E...

alrededor de 7 años hace | 0

Respondida
Why is subtracting different sized matrices not giving me an error? What is matlab calculating?
See documentation on "implicit expansion" https://www.mathworks.com/help/matlab/matlab_prog/compatible-array-sizes-for-basic-op...

alrededor de 7 años hace | 0

| aceptada

Respondida
store values from loop in an array
Typos in your code: for i=1:length(A) And change tableA to TableA (MATLAB is case sensitive). Or, you could get rid of the l...

alrededor de 7 años hace | 0

| aceptada

Respondida
Combination of X and Y vectors to get all possible positions on a Cartesian plane
[XX,YY] = ndgrid(X,Y); Z = [XX(:),YY(:)];

alrededor de 7 años hace | 0

| aceptada

Enviada


C Mex MATLAB Version
Mex C code to determine MATLAB version at compile time and run time

alrededor de 7 años hace | 1 descarga |

0.0 / 5

Respondida
mxCreateNumericArray error: cannot convert 'int*' to 'const size_t* {aka const long long unsigned int*}' for argument '2' to 'mxArray*
Simply replace this int* dims = new int[par->ndim]; with this mwSize* dims = new mwSize[par->ndim];

alrededor de 7 años hace | 1

| aceptada

Respondida
How do I implement bsxfun column-wise?
C = arrayfun(@(i)func(A(:,i),B(i)),1:size(A,2)) This just hides the loops behind arrayfun ... it doesn't eliminate them.

alrededor de 7 años hace | 1

Respondida
how to replace a column in a matrix
Instead of replacing all of the columns of A, use a different variable for the result. E.g., a cell array named C. So instead o...

alrededor de 7 años hace | 0

| aceptada

Respondida
Function Return only one value
Call it with two requested outputs: [X,Y] = MyEKFFun(31,24,18,330,364,379,1,1.1,1.3,2) Since you were calling it with no reque...

alrededor de 7 años hace | 4

Respondida
any easier way to find cell by string
Assuming the strings all start with 'test', e.g. find(cellfun(@(C)C(end)=='a',A))

alrededor de 7 años hace | 0

| aceptada

Respondida
cant workout why vectors aren't the same length
If you pass zeros( ) only one argument, it creates a square 2D matrix, not a vector. So give it two arguments to make your resul...

alrededor de 7 años hace | 0

Respondida
Question about array alternating between positive and negative
Seems like there should be a shorter way, but assuming you are looking for all 0 crossings and not just the positive to negative...

alrededor de 7 años hace | 0

| aceptada

Respondida
Can you compile a code including linprog function?
If you look here, linprog is not one of the Coder supported functions: https://www.mathworks.com/help/coder/ug/functions-suppor...

alrededor de 7 años hace | 0

| aceptada

Respondida
Writing a MATLAB script for equations
E.g., put these lines in a file with a .m extension: lambda = input('Input a value for lambda: '); mtbf = 1 ./ lambda; Are yo...

alrededor de 7 años hace | 1

| aceptada

Respondida
Lapacke in level-2 C S-function
According to the interface listed here and the link you list above: http://www.netlib.no/netlib/lapack/double/dpotrs.f The n, ...

alrededor de 7 años hace | 0

| aceptada

Respondida
Index Exceeds Array Bounds
Normally I would have expected to see code that sets the next values of x and y, but I don't see it. I.e., I am looking for line...

alrededor de 7 años hace | 0

| aceptada

Respondida
Finding remaining numbers in logical indexing?
E.g., find1 = length<1; : find2 = (length < 3) & (max_width_head > mean_width_neck*2); : find3 = max_width_head>=me...

alrededor de 7 años hace | 0

| aceptada

Respondida
How to use mxCreateNumericArray
This line is incorrect (wrong function and signature): plhs[0] = mxCreateNumericArray(xynum,1,mxINT16_CLASS); /*Creates a ma...

alrededor de 7 años hace | 1

| aceptada

Respondida
Why is my if statement breaking when condition is not met?
The == operator is an element-wise operator. You need to use a string comparison function for this. E.g., if( strcmpi(verbose...

alrededor de 7 años hace | 0

| aceptada

Respondida
Multidimensional arrays do not work in mex functions?
You can't use multi-level [ ][ ]... syntax with simple pointers. E.g., look at these lines: void matsum(double *dphidt, double ...

alrededor de 7 años hace | 0

Respondida
An efficient (quick) way of entering complex data into Matlab workspace.
Assuming you are using R2018a or later, you might try this FEX submission which can reinterpret real variables as interleaved co...

alrededor de 7 años hace | 0

| aceptada

Respondida
How to get direction for 3d angles between 2 vectors
You will need to define in your code which direction is the clockwise and which is counterclockwise. You can do that by definin...

alrededor de 7 años hace | 1

| aceptada

Respondida
How to code this problem?
E.g., syms x A = [1 2 4 5]; n = numel(A); P = prod(x-A); X = cell(n,1); for k=1:n X{k} = P / (x-A(k)); end This giv...

alrededor de 7 años hace | 0

Respondida
ODE45 generates undesired matrix of NaN entries
This is often an initial condition issue with the specific DE's involved. In your code, you have icond(2) = 0 icond(3) = ((F/...

alrededor de 7 años hace | 0

Respondida
How can I transfer the size of the array to mexFunction
Try this (caveat, untested). Don't pass in the row size of the matrix ... just pass in the matrix only. Let the code figure ou...

alrededor de 7 años hace | 0

| aceptada

Respondida
Preallocating a Matrix(For loop, Vectorization)?
In these lines: Y4=repmat(A,N,1); Y4 = cell2mat(arrayfun(@(i) A^i, (1:N)', 'Uni', false) The first line assigns something to ...

alrededor de 7 años hace | 1

| aceptada

Respondida
how can i use several loops
MATLAB will do all of the loops in the order it encounters them. So for the k=1 iteration it will do the i=1:nx loop in its enti...

alrededor de 7 años hace | 0

| aceptada

Cargar más