Réponse apportée
Sum(sum()) with optimization variable
What about this: L = reshape(1:size(x,3),1,1,[]) b = L >= t-pt_rj & L <= t; Constraint2 = sum(sum(b.*x,3),1) <= ones(1,size(...

presque 4 ans il y a | 0

Réponse apportée
Optimization: Reuse calculations from objective function in nonlinear constraints function
You can use this design pattern function preciousvalue = expensivereuse(inputs) persistent lastresult if ~isempty(lastresult)...

presque 4 ans il y a | 1

Réponse apportée
How to compare values in respective columns using "ismember"
use ismember on each column separately for j=1:size(A,2) A(:,j) = ismember(A(:,j),B(:,j)); end

presque 4 ans il y a | 1

| A accepté

Réponse apportée
Intersection of two curves
Intersection of to things that are not comparable? why not? just avoid using it to conclude anything that matters. N = [1 2 3 4...

presque 4 ans il y a | 1

| A accepté

Réponse apportée
Is it possible to specify the 'order' of a smoothing spline?
See if this can helps you https://www.mathworks.com/matlabcentral/fileexchange/25872-free-knot-spline-approximation

presque 4 ans il y a | 0

| A accepté

Réponse apportée
Matlab Extracting X and Y coordinates
See here

presque 4 ans il y a | 0

Réponse apportée
Natural Cubic Spline Interpolation
You made at least 2 mistakes: h is not computes Typo "x" instead of "X" The rest of the algorithm I didn't look at carefully ...

presque 4 ans il y a | 0

Réponse apportée
Finding a propriate function to fit "U" curve
This is the best I come up with using BSFK FEX x=[0.17 0.33 0.83 1.67 2.5 3.33 5]; y=[6.62466 5.58235 4.63169 5.08213 5.4159 5...

presque 4 ans il y a | 0

Réponse apportée
linprog ignores options, why?
Can you run with exitflag and output [x, fval, exitflag, output] = linprog( c, A, b, [], [], [], [], options ) and share them...

presque 4 ans il y a | 1

| A accepté

Réponse apportée
Why does MATLAB differentiate between strings and character array data types?
strings is introduced recently and the behavior is not the same than char array, an historic class. So they create a new class t...

presque 4 ans il y a | 0

Réponse apportée
Supplying gradient for the subset of parameters
May be you could provide the gradient interface for all, but compute the subset derivative analytically and the complement by fi...

presque 4 ans il y a | 1

Réponse apportée
Matrix algebra AxB=C, I want to solve for B
You can't recover the "original" B, whatever it is, your system is underdetermined (much more unknowns - 1826 - than equations -...

presque 4 ans il y a | 1

Réponse apportée
How can I assign zeros to a particular value in an expression
test function test N =4; u = (1:N); v = (N:2*N-2); function ui = getu(i) if i <= 0 | i >= 4 ui = 0; else ui =...

presque 4 ans il y a | 0

| A accepté

Réponse apportée
How to find x value for a known y in array plot?
* x = linspace(-3,3); Assuming your data are monotonic on the neighborhood of the max y = exp(-x.^2); [maxy, imax] = max(y...

presque 4 ans il y a | 0

Réponse apportée
pause() function is inaccurate
The accuracy is documented. "The accuracy of the pause function is subject to the scheduling resolution of your operating syste...

presque 4 ans il y a | 1

Réponse apportée
Question about the fminsearch Algorithm
fminsearch is an mfile, you can copy it then mofify these lines #196 (R2022a) % Set up a simplex near the initial guess. % PUT...

presque 4 ans il y a | 0

Réponse apportée
How to reduce the usage of "broadcast variables" when using parfor
You can use parallel constant to convert el, el_row1, ds, vmin to constant and reduce the data transfert, if they are not modifi...

presque 4 ans il y a | 1

Réponse apportée
Concatenate arrays of different length inside loop
What's wrong with cell? vox_count_cell = cell(1, length(image_files)); for i = 1:length(image_files) header = spm_vol(ima...

presque 4 ans il y a | 0

Réponse apportée
How do I implement multistart with lsqnonlin in my code?
"it returns the initial value" It indicates that the fit fails, not problem of wrong stating points (converge to local minima)....

presque 4 ans il y a | 0

Réponse apportée
solve equation numerically 1=(1/y)x*exp(x*y)
Numercial solution y = 0.01:0.01:1; x = nan(size(y)); for k=1:length(y) yk = y(k); x(k) = fzero(@(x)x.*exp(x.*yk)-y...

presque 4 ans il y a | 0

| A accepté

Réponse apportée
How can I find negative factorial ? (-0.5)!
There are actually different ways of extending factorial function, see here http://www.luschny.de/math/factorial/hadamard/Hadam...

presque 4 ans il y a | 1

Réponse apportée
install standalone application on macOs, that was compiled on windows
" According to Matlab, I think it should be possible ( https://de.mathworks.com/help/compiler/install-deployed-application.html ...

presque 4 ans il y a | 0

Réponse apportée
Remove all rows of an array based on a value in a column, and also remove all rows that have the same values as this row in other columns
M = [ 15.88 18.43 15.88 18.43 0 15.88 18.43 33.48 14.99 ...

presque 4 ans il y a | 0

| A accepté

Réponse apportée
why is acumarray much slower calculating means than sum?
The default behavior of accumarray is sum and it's low-level coded. When you pass user-defined function MATLAB will call the fu...

presque 4 ans il y a | 2

| A accepté

Question


reduction variables and evaluation order
This the doc on can read "A reduction variable accumulates a value that depends on all the iterations together, but is independ...

presque 4 ans il y a | 1 réponse | 1

1

réponse

Réponse apportée
Adding fields to a struct?
[PR1Data.filename] = deal(''); or if you PR1Data is non empty PR1Data(1).filename = '';

presque 4 ans il y a | 1

| A accepté

Réponse apportée
Faster way to create a matrix of the unique() of each row of a matrix
% Test example A=randi(4,10,5) [m,n] = size(A); As=sort(A,2); b=[true(m,1),diff(As,1,2)>0]; R=repmat((1:m)',1,n); C=cums...

presque 4 ans il y a | 1

| A accepté

Réponse apportée
How to create 3D matrix with empty cells
cell(3,3,3) % replace 3 with 300 for you I'm still afraid you'll be soon in trouble if you ask such question about easy data cr...

presque 4 ans il y a | 0

| A accepté

Réponse apportée
Fit coefficients are equal (to starting points) in 3000 different fits
Can you do check whereas they are identical with this command after the loop isequal(Coefficients(:,10),Coefficients(:,2999)) ...

presque 4 ans il y a | 0

| A accepté

Charger plus