Réponse apportée
How to add an NVCC flag
Downgrade to Visual Studio 2019. See also, https://www.mathworks.com/matlabcentral/answers/2158705-mexcuda-can-t-find-visual-st...

presque 2 ans il y a | 0

Réponse apportée
starting vector (zero vector) equals lower bounds but gets projected to non-zero vector
This behavior is specific to the interior-point algorithm. As the name suggests, an interior-point algorithm must start at an in...

presque 2 ans il y a | 1

Réponse apportée
Finding concave hull around abstract shape
ps = load('matlab_answer_example.mat').new_polyShape1; tic; V=cell2mat(arrayfun(@(i) upsamp(polybuffer(ps,-i)),[0,1],'Unifor...

presque 2 ans il y a | 1

Question


mexcuda() can't find Visual Studio 2022, but mex() can.
In R2024a, I encounter the following when trying to compile with mexcuda in conjunction with Visual Studio 2022. >> mexcuda -la...

presque 2 ans il y a | 1 réponse | 0

1

réponse

Réponse apportée
loading and training an existing network.
previous = load("savednet","net","layers"); net = trainNetwork(data,clabels,previous.net,options);

presque 2 ans il y a | 0

| A accepté

Réponse apportée
Interpolate and plot a surface in a rotated coordinated system
I'm not familiar with the FEX submission you used, but I can show how I would do it with this one, https://www.mathworks.com/ma...

presque 2 ans il y a | 0

Réponse apportée
Find the indices of numbers that occur first
You won't be able to do better than a for-loop over the V(i).

presque 2 ans il y a | 0

Réponse apportée
scale/normalize parameter vector for optimization
The transformation is non-differentiable, and probably is not a good idea for Optimization Toolbox optimizers which are smooth ...

presque 2 ans il y a | 0

Réponse apportée
I have shifted from lsqnoneg to lsqlin because lsqnonneg does not support additional constraint is it right or wrong choice?
If your lsqlin can solve your problem, then there is usually never any reason to use lsqnonneg. lsqnonneg is for nonlinear least...

presque 2 ans il y a | 0

Réponse apportée
Why is my hamming window and rectangular window values the same for sigma_omega when I make L = 21?
% Set window length L = 21 L = 21; % Generate rectangular and Hamming windows rect_window = window(@rectwin, L); hamming_w...

presque 2 ans il y a | 0

| A accepté

Réponse apportée
How to identify Gaussian type maxima in an image
using imregionalmax i can generate a list of candidate. I wanna check each one now. I may like to filter the one which are non s...

presque 2 ans il y a | 0

Réponse apportée
transform linear inequality constraints into bound constraints for optimization solvers
Yes, a set A*y>=0 is a cone and so can equivalently be expressed as where are the so-called extreme rays of the cone and are ...

presque 2 ans il y a | 0

Réponse apportée
Cannot define a cell array of custom classes in function argument validation
classdef Session < handle %SESSION Summary of this class goes here % Detailed explanation goes here properties (Acc...

presque 2 ans il y a | 1

Réponse apportée
How to convert two nested for-loops to one parfor loop.
It does not seem advisable to use parfor. Everything in your code is vectorizable. However, here is what a parfor approach could...

presque 2 ans il y a | 0

| A accepté

Réponse apportée
Why can't we define properties on enumerations extending from built-in classes?
I don't know why. I suspect it is for the same reason why builtin indexing and concatenation no longer works when you add proper...

presque 2 ans il y a | 0

| A accepté

Réponse apportée
Why did CD folder; give such a goofy error message when I just forgot ()
Because cd apploc is equivalent to, cd('apploc') This is a general thing in Matlab function-calling syntax. For any functio...

presque 2 ans il y a | 1

Réponse apportée
moving median with variable window
Anyway, I will be very happy for any hint how to apply robust median filter on my use case, where separate parts of signal shoud...

presque 2 ans il y a | 0

Réponse apportée
moving median with variable window
x = rand(1,6) k = [2,3,3,5,3,2]; n=numel(x); J=repelem(1:n,k); I0=1:numel(J); splitMean=@(vals,G) (accumarray(G(:),vals...

presque 2 ans il y a | 0

Réponse apportée
Minimum CUDA driver version which works with R2024a
The driver version you need is a function of your GPU card. Why not just install the latest one as the error message suggests? ...

presque 2 ans il y a | 2

Réponse apportée
Moving window percentile computation using Conv
See ordfilt2.

presque 2 ans il y a | 0

Réponse apportée
Modifying arrow length based on intersection with polygon
An alternative to Mike's approach using linexlines2D() from the File Exchange, https://www.mathworks.com/matlabcentral/fileexch...

presque 2 ans il y a | 1

Réponse apportée
Should table Indexing be Faster?
I haven't profiled it, but I would bet that the following line, from @tabular/braceReference b = t.extractData(varIndices); is...

presque 2 ans il y a | 1

| A accepté

Réponse apportée
N-dimension curve fit how to
Perhaps polyfitn will help, https://www.mathworks.com/matlabcentral/fileexchange/34765-polyfitn

presque 2 ans il y a | 0

Réponse apportée
How to speed up vectorized operations for dynamic programming
This might be a little faster. betaPZtransp=beta*PZ'; tic while err>tol && iter<=max_iter RHS = Ret + reshape(V0*bet...

presque 2 ans il y a | 1

| A accepté

Réponse apportée
Is there a meaningful guideline on when to use parentheses vs square brackets vs curly brackets in writing MatLab code?
General If we forget about indexing for the moment, it becomes very simple. Function calls use parentheses, and only parenthese...

presque 2 ans il y a | 2

Réponse apportée
Chasing what is wrong with 'dual-simplex-highs' in linprog
It doesn't like your super-small Aeq values. load('linprog_test.mat') Aeq(abs(Aeq)<1e-8)=0; linprogopt = optimset('Algori...

presque 2 ans il y a | 1

Réponse apportée
How to log the data in the workspace without modifying the content of the for loop?
What does "log the data" mean? Do you mean you want to store it to a file on disk, or do you want to store it in some sort of ar...

presque 2 ans il y a | 0

Réponse apportée
whether is imageInputLayer flattened?
No, an imageInputLayer does not reshape the input that it receives, as demonstrated in the following, net=dlnetwork(imageInputL...

presque 2 ans il y a | 0

| A accepté

Question


Accessing network drives from within Matlab
I have two Windows 10 computers running Matlab 2023b on the same network. On one computer, I am able to reach a remote network d...

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

1

réponse

Réponse apportée
How to quantify shape similarity between two vectors.
Perhaps you could use correlation-based similarity? x1 = 0:0.1:10; Y1 = gaussmf(x1,[0.8 5 ]); Y2 = gaussmf(x1,[0.8 3 ]); Y3 ...

presque 2 ans il y a | 0

Charger plus