Beantwortet
Use Filter Constants to Hard Code Filter
Probably fully functional naive version of filter: function [Y, z] = myFilter(b, a, X, z) % a and b should have same order...

mehr als 2 Jahre vor | 0

Frage


Algorithm for homogenization of non-equidistant 1-D grid
I am looking for proper algorithm for so called "delta-homogenization" of 1-D non-equidistant grid. Definition: The sorted mono...

fast 3 Jahre vor | 0 Antworten | 0

0

Antworten

Frage


Matlab is significantly slower than Julia on simple evaluation
More and more frequently some people open the question about speed comparison between Matlab and Julia. The main Julia developer...

etwa 3 Jahre vor | 2 Antworten | 3

2

Antworten

Frage


expm function problem for stiff matrix
For very specific matrix A: a = -1e20; b = eps; c = 1; A = [a,0,b;0,c,0;-b,0,a]; disp('A:'), disp(num2str(A)) A: ...

mehr als 3 Jahre vor | 3 Antworten | 1

3

Antworten

Beantwortet
histogram of signals gaps width
This is much more simple Matlab implementation but still not optimal (+ not vectorized): signals = [1.1 NaN NaN NaN -1.4 NaN 8...

mehr als 3 Jahre vor | 0

Frage


histogram of signals gaps width
I am looking for algorithm (effective + vectorized) how to find histogram of gaps (NaN) width in the following manner: signals ...

mehr als 3 Jahre vor | 2 Antworten | 0

2

Antworten

Beantwortet
how to install supported CUDA Toolkit 10.2 on Ubuntu 20.04 LTS Linux
After thorough discussion with Matlab support and several relevant forums (Ubuntu, NVIDIA, ...) the final result is as follows: ...

fast 4 Jahre vor | 0

| akzeptiert

Frage


how to install supported CUDA Toolkit 10.2 on Ubuntu 20.04 LTS Linux
As you can see here, the CUDA Toolkit currently suported by R2020b is 10.2. But, as you can see here , the only supported versio...

fast 4 Jahre vor | 5 Antworten | 1

5

Antworten

Frage


possible speed up of the ischange function by parfor
I completely understand, that any modifications of standard MATLAB functions are very dangerous, but I found the possibility how...

etwa 4 Jahre vor | 0 Antworten | 0

0

Antworten

Frage


simple bernoulli sampler function
I am trying to find replacement of binornd function by standard MATLAB code. Is the following command r = binornd(1,p,sz) exa...

etwa 4 Jahre vor | 1 Antwort | 0

1

Antwort

Beantwortet
What frustrates you about MATLAB? #2
Do you really think, that these threads are read by MTW people??? I am not sure!!! TMW definitely choose the commercial way of ...

etwa 4 Jahre vor | 0

Beantwortet
2018b gcc support on Ubuntu 18.04
May be this is possible solution for you: https://www.mathworks.com/matlabcentral/answers/407502-incompatible-gcc-version-with-m...

mehr als 4 Jahre vor | 0

Beantwortet
Multi-precision linear programming
One of possible way (so far only known to me) how to solve directly and eficiently LP problems with full multi-precision support...

mehr als 4 Jahre vor | 0

| akzeptiert

Frage


Multi-precision linear programming
I need to solve specific linear programming problem which is based on Mallows permutation probability distribution. This exponen...

mehr als 4 Jahre vor | 2 Antworten | 0

2

Antworten

Beantwortet
strange power .^ operator behaviour
Very interesting description of the integer power problem: http://szhorvat.net/pelican/fast-computation-of-powers.html

mehr als 4 Jahre vor | 0

Frage


strange power .^ operator behaviour
Take a look on this FEX. For vectors of length greater than >~100 elements it is more efficient to use multiple x.^2 than x....

fast 5 Jahre vor | 2 Antworten | 0

2

Antworten

Frage


incremental training (large data set)
Is the following approach suitable for NN incremental learning in general? for bn = 1:num_batches inputs = <get batch ...

fast 5 Jahre vor | 1 Antwort | 0

1

Antwort

Beantwortet
matchpairs function input parameter costUnmatched
I propose the following costUnmatched input parameter estimation for given Cost matrix: costUnmatched = max(size(Cost)) * max(C...

fast 5 Jahre vor | 0

| akzeptiert

Frage


matchpairs function input parameter costUnmatched
How to choose proper value of parameter costUnmatched (matchpairs function) to get requested number of matches. Especially in a...

fast 5 Jahre vor | 1 Antwort | 0

1

Antwort

Frage


MATLAB Answer need better policy
Just one remark regarding current situation on MATLAB Answer portal: A lot of people (including highly trustworthy) aswers on m...

fast 5 Jahre vor | 1 Antwort | 0

1

Antwort

Beantwortet
"symmetrical" rows of matrix
I present the best solution so far: d = ~pdist2(A(:,1:end/2), A(:,end/2+1:end)); [iA1, iA2] = find(triu(d & d.'));

fast 5 Jahre vor | 0

| akzeptiert

Frage


"symmetrical" rows of matrix
I have integer matrix A (nA x c) with even number of columns (e.g. mod(c,2) = 0) and unique rows. How to effectivelly (by spe...

fast 5 Jahre vor | 1 Antwort | 0

1

Antwort

Frage


what is recommended way to apply incremental ANN learning
I would like to apply ANN for approximation (regression) of the larga data set of points {x_i, y_i}, where x_i are input vectors...

fast 5 Jahre vor | 0 Antworten | 0

0

Antworten

Frage


MATLAB Connector not running
I am using Matlab Connector on Linux (LinuxMint 19.3 based on Ubuntu 18.04). When I start MATLAB connector (v 1.4.0.6) and the...

fast 5 Jahre vor | 0 Antworten | 0

0

Antworten

Frage


how can I effectively compute expected value by histogram approximation of probability desnsity function
What is the proper way to compute effectively (fast) the expected value E(x) in a case when I have approximation of probability ...

etwa 5 Jahre vor | 1 Antwort | 0

1

Antwort

Frage


symbolic function with specific properties
I need to implement the symbolic function E(m(x)), where x = [x1, ..., xN] are symbolic variables, with the folowing property: ...

etwa 5 Jahre vor | 0 Antworten | 0

0

Antworten

Beantwortet
Check if I have done everything right
Your riemann function is completely wrong! Try this: function [integral] = riemann(x) integral = sum(calc...

etwa 5 Jahre vor | 0

Beantwortet
Randomly sorting rows while keeping column relationships the same
Apermrows = A(randperm(size(A,1)),:)

etwa 5 Jahre vor | 4

| akzeptiert

Beantwortet
running functions in multiple instances
You need to run three function on two matlab instances simultaneously? If yes, so open two separate instances of Matlab and run...

etwa 5 Jahre vor | 1

Beantwortet
Does Matlab support GTX 1660 graphics card?
Definitely yes!!! Did you install the proper nvidia driver on your system?

etwa 5 Jahre vor | 0

| akzeptiert

Mehr laden