Community Profile

photo

Royi Avital


Ben Gurion University

Last seen: 4 Tage vor Aktiv seit 2011

Followers: 0   Following: 0

Kontakt

Statistiken

All
  • Knowledgeable Level 1
  • Revival Level 2
  • Speed Demon
  • Creator
  • 5-Star Galaxy Level 3
  • Personal Best Downloads Level 2
  • GitHub Submissions Level 3
  • Explorer
  • First Review
  • First Submission
  • 3 Month Streak
  • Thankful Level 3

Abzeichen anzeigen

Feeds

Anzeigen nach

Beantwortet
How do I remove the border lines surrounding an axes?
In newer MATLAB versions this can be done using the XAxis and YAxis sub objectes: hF = figure(); hA = axes(hF); set(hA, '...

3 Monate vor | 0

Frage


List of New / Updated Functions per MATLAB Version
Is there a way to generate a list of new (Or updated) functions in MATLAB per release? I know I can see in documentation per fu...

etwa 2 Jahre vor | 2 Antworten | 0

2

Antworten

Beantwortet
Assign a Sub Array to Array Knowing the Number of Dimensions at Run Time
OK, It turns out it can be done using Cell Arrays: vSizeB = size(tB); numDims = length(vSizeB); %<! Equals to ndims(tB) cId...

etwa 2 Jahre vor | 0

| akzeptiert

Frage


Assign a Sub Array to Array Knowing the Number of Dimensions at Run Time
Assume we have tA and tB with the same number of dimesions. We also have all(size(tB) <= size(tA)) == true. The task is to emb...

etwa 2 Jahre vor | 2 Antworten | 0

2

Antworten

Frage


Convert a LayerGraph into a DAGNetwork - Validate and Initialize the Net
In theory, the function assembleNetwork() should convert a LayerGraph into a DAGNetwork. Yet in practice, it doesn't always wor...

mehr als 2 Jahre vor | 1 Antwort | 0

1

Antwort

Beantwortet
Upload image and get direct link on imgur
Since IMGUR uses REST based API you can do it in MATLAB. Best way to start is trying to replicate the Python library: IMGUR P...

mehr als 3 Jahre vor | 0

Beantwortet
How do I initialize a complex array to zeros in MATLAB?
In later versions one could do something like vB = zeros(3, 1, 'like', 1j);.

mehr als 3 Jahre vor | 3

Beantwortet
How can I set a custom path in Matlab R2017a on MacOS?
You should use setenv() to set the path. Pay attention that usually you want to add something to the path and not override it. ...

mehr als 3 Jahre vor | 1

| akzeptiert

Beantwortet
Is there a way to Call Jupyter from Matlab?
I am not sure what do you mean by calling Jupyter from MATLAB. If you mean using MATLAB in Jupyter, it is certainly doable and ...

fast 4 Jahre vor | 0

| akzeptiert

Beantwortet
how to implement MILP in matlab
I also created a MEX wrapper around GNU Linear Programming Kit (GLPK). You may find it at https://www.mathworks.com/matlabcentr...

fast 4 Jahre vor | 1

Beantwortet
Most Efficient Way to Construct the Matrices to Extract the Lower and Upper Triangle from a Vectorized Matrix
My current solution: function [ mLU ] = GenerateTriangleExtractorMatrix( numRows, triangleFlag, diagFlag ) EXTRACT_LOWER_TRI...

fast 4 Jahre vor | 0

Frage


Most Efficient Way to Construct the Matrices to Extract the Lower and Upper Triangle from a Vectorized Matrix
Given a matrix and its vector form I am after the most efficient way to build the matrices and which extracts the lower and ...

fast 4 Jahre vor | 3 Antworten | 1

3

Antworten

Frage


Generating Toeplitz Matrix which Matches the Convolution Shape Same
Given a filter vH I'm looking for vectors vR and vC such that: toeplitz(vC, vR) * vX = conv(vX, vH, 'same'); For instance, for...

mehr als 4 Jahre vor | 3 Antworten | 1

3

Antworten

Beantwortet
Matlab equivalent to iPython Notebook
As written above, there is the option of MATLAB's Live Editor. I find it to be really limited vs. iPython Notebook. They are no...

mehr als 4 Jahre vor | 1

Frage


Faster and More Efficient `squareform()`
I'm using squareform(pdist(mX)) fairly often. The problem is squareform() is so slow it makes use of pdist2(mX, mX) faster. ...

mehr als 4 Jahre vor | 0 Antworten | 0

0

Antworten

Frage


How to Imply the Input Array Dimensions to MATLAB Coder
Assuming I have a simple function in MATLAB: function [ mG ] = ProcessImage( mI ) %#codegen mG = edge(mI, 'Sobel', [], 'bo...

mehr als 4 Jahre vor | 1 Antwort | 0

1

Antwort

Frage


MATLAB's JIT Engine
Do you think MATLAB's JIT engine is oudated? It does look so. Look at Julia Language: http://julialang.org/ What do you think?...

fast 5 Jahre vor | 5 Antworten | 2

5

Antworten

Beantwortet
Can I use Microsoft Visual Studio 2019 with MATLAB R2019a or R2018b?
I'm not sure how the search for Compiler works for the mex command. From 5 minutes research I did I came to the conclusion it w...

fast 5 Jahre vor | 2

Beantwortet
SuiteSparse Installation: Cannot open include file: 'regex.h'
Why would you need SuiteSparse in MATLAB? I though MATLAB uses SuiteSparse to begin with.

fast 5 Jahre vor | 0

Frage


Improving Speed and Reducing Memory Consumption with Creation of 2D Sparse Convolution Matrix
In a previous question of mine, Creating Convolution Matrix of 2D Kernel for Different Shapes of Convolution, among answers of t...

etwa 5 Jahre vor | 0 Antworten | 0

0

Antworten

Beantwortet
Creating Convolution Matrix of 2D Kernel for Different Shapes of Convolution
Here is my solution which build Doubly Block Toeplitz Matrix: function [ mK ] = Create2DKernelConvMtxSparse( mH, numRows, numCo...

etwa 5 Jahre vor | 1

Frage


Creating Convolution Matrix of 2D Kernel for Different Shapes of Convolution
MATLAB, for thos who have access to Image Processing Toolbox offers the function convmtx2(). Yet there are 2 issues: It is onl...

mehr als 5 Jahre vor | 4 Antworten | 1

4

Antworten

Beantwortet
How can I determine whether a string contains a substring?
I guess that since MATLAB R2016b it is recommended to use `contains` : Determine if pattern is in strings - MATLAB contains - M...

mehr als 5 Jahre vor | 1

Beantwortet
Functional form of the colon (:) operator?
I really wish MATLAB would add function to vectorize arrays into column vector as the colon operator does.

mehr als 6 Jahre vor | 0

Beantwortet
Change opacity of Lines
In newer versions of MATLAB you can do that easily using the Color property of the line. By default it is RGB array (1 x 3)....

mehr als 6 Jahre vor | 7

Beantwortet
GUI - Slider which has two slide bars
Maybe you meant a Range Slider which you can create as shown in <http://undocumentedmatlab.com/blog/sliders-in-matlab-gui Slider...

mehr als 6 Jahre vor | 0

Frage


Display Pixel Values in Image - Alternative to `showPixelValues()`
Hello, I would like to display an image and its pixel values in a similar manner to <https://www.mathworks.com/matlabcentral/...

mehr als 6 Jahre vor | 3 Antworten | 0

3

Antworten

Beantwortet
What is missing from MATLAB?
What I miss the most is better forum for the community. We need Math Equation support through MathJaX (Like in StackExchange ...

mehr als 6 Jahre vor | 0

Beantwortet
How to perform KNN regression
At each point you want to calculate the value (x, y) find the K closest point (For x). Then average them to create the new va...

mehr als 6 Jahre vor | 0

Beantwortet
Averaging Overlapping Pixels in Sliding Window Operation
Another option would be: I = reshape(accumarray(mIdx(:), mZ(:), [(M * N), 1], @(x) mean(x)), [M, N]); Where `mZ` is the ...

fast 7 Jahre vor | 0

Mehr laden