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 6 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...

mehr als 6 Jahre vor | 0

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

mehr als 6 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...

mehr als 6 Jahre vor | 1

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

mehr als 6 Jahre vor | 0

| akzeptiert

Frage


ranking of vector with non-unique elements
I need to perform fast ranking of the vector with non-unique elements, like in the following example: F = [10.1 31.0 20.5 20.5 ...

mehr als 6 Jahre vor | 1 Antwort | 0

1

Antwort

Frage


vector of integers modification
I have vector of positive integers which I need to modify into vector of consecutive integers with the same ordering. Example: ...

mehr als 6 Jahre vor | 1 Antwort | 0

1

Antwort

Frage


vectorised code is terribly slower
Why is the vectorized version of simple local maxima detection code significantly slower (~2-3 times) than its for-loop version?...

mehr als 6 Jahre vor | 0 Antworten | 0

0

Antworten

Frage


ischange in stream or moving window regime
I would like to compute change points (or linearlly segmented signal) from input data stream via moving window. Is there any eff...

mehr als 6 Jahre vor | 0 Antworten | 1

0

Antworten

Beantwortet
Is I5 9400f processor is sufficient for deep learning, performing models,Monte Carlo simulation and other heavy works on Matlab
All MC methods are in general extremely CPU consuming. So, soon or later you always reach limits of your computer. From this poi...

mehr als 6 Jahre vor | 1

| akzeptiert

Beantwortet
Replace elements in binary matrix
% B original binary matrix % B_ new binary matrix B_ = ~B;

mehr als 6 Jahre vor | 0

| akzeptiert

Frage


specific assignments of vector items
I am looking for suitable algorithm to solve the following problem: For vector v (Nx1, double, single) I need to find assigment...

fast 7 Jahre vor | 0 Antworten | 0

0

Antworten

Beantwortet
elimination of conscutive regions (generalization: ones with zeros between)
I am still looking for better (faster) solution. Any idea how to improve so far best solution: A = [1 -1 0; ...

mehr als 7 Jahre vor | 1

Frage


elimination of conscutive regions (generalization: ones with zeros between)
I need effectively eliminate (by zeroing) the consecutive "1's" between "-1's" and start/end of column at each column of matrix ...

mehr als 7 Jahre vor | 3 Antworten | 0

3

Antworten

Beantwortet
elimination of consecutive regions
good idea (only 1D) is <https://www.mathworks.com/matlabcentral/answers/293926-how-do-i-find-4-or-more-consecutive-zeros-and-rep...

mehr als 7 Jahre vor | 0

Frage


elimination of consecutive regions
I need to effectively eliminate consecutive regions in vector "a" or better in rows/columns of matrix "A" with length of separat...

mehr als 7 Jahre vor | 3 Antworten | 0

3

Antworten

Frage


how to robustly estimate low and up envelope of signal with trend, few level constant steps and noise
I am looking for robust estimation method of low and up envelope of the signal consisting from smooth trend component, constant ...

mehr als 7 Jahre vor | 1 Antwort | 0

1

Antwort

Frage


different speed of ODE benchmark with and without MATLAB gui
When I ran matlab benchmark on Linux at MATLAB GUI and at MATLAB command line (without gui) I get the different speed of ODE ben...

mehr als 7 Jahre vor | 0 Antworten | 0

0

Antworten

Beantwortet
Incompatible gcc version with mex
Frankly speaking I do not understand why TMW choose the "compatible" compiler version on Linux so terribly. On many distribution...

mehr als 7 Jahre vor | 0

Gesendet


Fast unique random permutations
Fast random sample (without replacement) from unique permutations of an integer vector

mehr als 7 Jahre vor | 1 Download |

0.0 / 5

Frage


add limit lines to the gplotmatrix figure
How to add to each subplot of gplotmatrix figure (gplotmatrix(x,[],group)) four separate lines corresponding to the two limits v...

mehr als 7 Jahre vor | 0 Antworten | 0

0

Antworten

Beantwortet
find indices of row subsets
So far best solution: function ind = item2ind_new(item,t) t = t(:); [m,n] = size(item); mct = max(accumarray(t,1))...

mehr als 7 Jahre vor | 0

| akzeptiert

Frage


find indices of row subsets
I am trying to find vectorized matlab function ind = item2ind(item,t) to solve following problem: I have a list of row vectors ...

mehr als 7 Jahre vor | 3 Antworten | 0

3

Antworten

Frage


speedup dsearchn for large data set
I am looking for significant speed up of dsearchn function in a case of large input data k = dsearchn(X,XI) where is no...

fast 8 Jahre vor | 1 Antwort | 0

1

Antwort

Beantwortet
How can i find the equation of a fitted curve line in the curve fitting tool?
Your problem is already solved. When you are able to plot regression line you must know parameters k and q of line equation y = ...

etwa 8 Jahre vor | 0

Beantwortet
integer strings decoding ... speed optimization
Probably fastest and simplest solution, I found so far ... using latest new Matlab (>= R2016b) features, see function insertBefo...

etwa 8 Jahre vor | 0

| akzeptiert

Beantwortet
How to find water vapour density for gaspl
Just try simple googling with the following keywords: water, wapour, density, table I hope you smart enough to find something...

etwa 8 Jahre vor | 0

Beantwortet
Error in implemented function
The double precision (default numerical values class in Matlab) is not enough for this kind of computation!!! You need to use s...

etwa 8 Jahre vor | 2

| akzeptiert

Beantwortet
Function calculates wrong value
See ma answer here: <https://www.mathworks.com/matlabcentral/answers/366977-error-in-implemented-function link>

etwa 8 Jahre vor | 0

| akzeptiert

Frage


integer strings decoding ... speed optimization
I have the following problem: I need decode integer sequences "c" to char string messages "m" by following association: ...

etwa 8 Jahre vor | 2 Antworten | 0

2

Antworten

Mehr laden