Réponse apportée
cubic spline interpolation - mixed boundary conditions possible?
In principle yes. The spline on the second segment (b,c) are piecewise cubic poynomials; starting from b sequentially to each in...

environ 2 ans il y a | 0

| A accepté

Réponse apportée
How to convert /map uint16 to int16 maintaining the dynamic range so that [0] and [2^16-1] in uint16 beomes [-2^15] and [2^15-1] without going through double
If you have C compiler this simple mex file will do the job: /*****************************************************************...

environ 2 ans il y a | 1

Réponse apportée
Faster/better conversion than using swapbytes typecast on udp byte datastream?
Try this: %% Exampel data data =[0 5 187 8 1 136 61 48 0 0 0 0 1 67 58 246 255 127 176 76 10 231 55 137 255 240 253 91 255 22...

environ 2 ans il y a | 0

| A accepté

Réponse apportée
How to add extra columns at specified locations
After computing dataset2 dataset = [1, 2, 3, nan, 4, 5, nan, 6, 7]; % ... dataset2 = [2, 5, 7, 8, 4, 8, 10]; do this: da...

environ 2 ans il y a | 0

| A accepté

Réponse apportée
scrit can't error related to Sortrows and matrix
Replace initialization statements sol=[]; % Start with an empty matrix of feasible solutions data = []; with sol=zeros(...

environ 2 ans il y a | 0

Réponse apportée
Max Recursion even when using clear
Don't name your script function clear.m. In command windows type which clear then rename or remove that file to restore the bu...

environ 2 ans il y a | 0

Réponse apportée
Upsampling a matrix with zero elements
x = [1 2 3 4; 5 6 7 8] kron(x, [1 0; 0 0])

environ 2 ans il y a | 1

Réponse apportée
warning in Polyval - Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
Check your data with this command all(isfinite(rawData(:))) if it returns 0/false then your data is not valid

environ 2 ans il y a | 0

Réponse apportée
Does linprog support warm-starts?
Not that I'm aware of.

environ 2 ans il y a | 0

| A accepté

Réponse apportée
How to detect whether a figure is created by uifigure()
This command returns true for uifigure handle fig matlab.ui.internal.isUIFigure(fig)

environ 2 ans il y a | 0

| A accepté

Réponse apportée
Trying to optimise this loop
function WriteOutValuesToAFile(filename,M) fileID = fopen(filename,'wt'); for k=1:size(M,3); s = sprintf('%f,', M(:,:,k))...

environ 2 ans il y a | 0

Réponse apportée
How to do a layered matrix--vector multiplication without a for loop?
NNN = 10; RR = rand(NNN, 3); TT = rand(3,3,NNN); for iii = 1:1:NNN TRR(iii,:) = TT(:,:,iii) * RR(iii, :).'; % Bug fix ...

environ 2 ans il y a | 2

| A accepté

Réponse apportée
Convert Quaternion to Euler angle extrinsically
Here is the answer by MATLAB code: extrinsic angles is flip intrinsic angles % Generate random unit quaternion q = quaternion(...

environ 2 ans il y a | 1

Réponse apportée
Why I receive an error when my code is in function but not when he's in editor ?
You could consider to vectorize the test instead of using for loop and the side effect when deleting array element(s). I don't k...

environ 2 ans il y a | 0

Réponse apportée
Why I receive an error when my code is in function but not when he's in editor ?
Loop in reverse would fix the issue (cross interaction between deletion that makes array strinks and loop index) for i = si...

environ 2 ans il y a | 0

| A accepté

Réponse apportée
Seeking Help: Deleting Redundancy in a Structure Array
a(1).pos=[1,7,1]; a(2).pos=[1,7,1]; a(3).pos=[6,5,5]; a(4).pos=[1,4,3]; a(5).pos=[2,2,2]; P = cat(1, a.pos); [~, I] = un...

environ 2 ans il y a | 0

| A accepté

Réponse apportée
How to generate a random 3D vector with set magnitude?
MagTarget = 10; MagRange = 0.5; n = 1000; m = MagTarget + MagRange * (rand(1,n)-0.5); xyz = randn(3,n); xyz = xyz .* (m ./ ...

environ 2 ans il y a | 2

Réponse apportée
Interpolation schemes that produce positive second derivatives of the interpolant
You can use approximation spline, just put more (denser) knots than the data points so it actually interpolates. For example us...

environ 2 ans il y a | 0

| A accepté

Réponse apportée
scatteredInterpolant function gives error in input data if I try to interpolate a vectorial field where for each point I have 2 values, but in the doc it says that is allowed.
I guess you use an old MATLAB version that doesn't support vector interpolation. EDIT the doc is for 2023b more recent than you...

environ 2 ans il y a | 2

| A accepté

Question


sum results depending on array orientation
The issue of sum depending to array orientation is reported by @Matt J in this thread To me the flaw is serious enough that it ...

environ 2 ans il y a | 3 réponses | 0

3

réponses

Réponse apportée
Just by changing values of k, the given code gives error. Why?
k need to be column vector and your transposed is miss placed. The correct is k = -((M/2-1):M/2).';

environ 2 ans il y a | 0

| A accepté

Réponse apportée
Quickest way for alternate indexing a vector
Try to do something clever (1st and 2nd methods) but it is slower than your code 53rd method). A small modificationof your code ...

environ 2 ans il y a | 1

Réponse apportée
function to generate collections of integers that all sum to the same value?
Look in File Exchange with the keywords integer partition. You'ill find many implementations for example this one: https://www....

environ 2 ans il y a | 0

| A accepté

Réponse apportée
Matlab memory optimization regarding output arguments
You better have your funtion codded like this function functie() x = 9; % Remove the braket x = functieLocala(x); ...

environ 2 ans il y a | 1

Réponse apportée
Size mismatch (size [1 x :?] ~= size [0 x 1]) - GPU Coder Deployment
Try to initialize index = zeros(1, 0); since you concatenate index horizontally in the for loop.

environ 2 ans il y a | 0

Réponse apportée
How can we compute batch matrix-matrix product of matrices (3-D tensors) in MATLAB?
b = 2; n = 3; m = 4; p = 5; A = rand(b,n,m); B = rand(b, m,p); AA = permute(A, [2 3 1]); BB = permute(B, [2 4 1 3]); ...

environ 2 ans il y a | 0

| A accepté

Réponse apportée
An annoying extrapolation problem
Because you insist on using anonymous function and ugly combined expression using scalar logical expression. The trick is no lon...

environ 2 ans il y a | 0

| A accepté

Réponse apportée
Why is the result matrix “rho” of function corr (A, B) not a symmetric matrix?
As the doc describe, for example rho(2,1) is the correlation between X(:,2) and Y(:,1) rho(1,2) is the correlation between X(:...

environ 2 ans il y a | 0

| A accepté

Réponse apportée
How to efficiently index into memory and call functions within for loops
When you index a hybrid slide (j positive integer scalar) % x = ... % j = ... xidx = x(:,:,:,j,:,:) (here I take a 6D array ...

environ 2 ans il y a | 0

| A accepté

Réponse apportée
is there a way to perform this task w/o using loops?
You might consider store in table instead NOTE: using table would be more convenient to access data, not necessary faster p.va...

environ 2 ans il y a | 1

Charger plus