Community Profile

photo

Zoltán Csáti


Université libre de Bruxelles

Last seen: 4 meses hace Con actividad desde 2012

Followers: 0   Following: 0

Contacto

Professional Interests: differential equations, fluid mechanics, extended finite element method, MATLAB

Estadísticas

All
  • Knowledgeable Level 3
  • Revival Level 1
  • Promoter
  • Solver
  • 5-Star Galaxy Level 3
  • Personal Best Downloads Level 2
  • First Review
  • GitHub Submissions Level 1
  • First Submission
  • 6 Month Streak
  • Thankful Level 4
  • Knowledgeable Level 2

Ver insignias

Feeds

Ver por

Respondida
What frustrates you about MATLAB? #2
Before I started using Python this year, I was a happy MATLAB user. I still like MATLAB because I am efficient in it, but here a...

más de 3 años hace | 10

Pregunta


MATLAB returns empty string from C-MEX file
I have an external C function which takes a double pointer and returns a char. The problem is that when I interface that functio...

más de 5 años hace | 1 respuesta | 0

1

respuesta

Respondida
2D Voronoi Diagram with Periodic Boundary Conditions
If you want to create a periodic 2D Voronoi tessellation, the main steps are the following: 1. Create the seeds on the orig...

más de 5 años hace | 1

Pregunta


Smallest non-zero eigenvalue for a generalized eigenvalue problem
I have two matrices, *A* and *B*, for which I want to solve the generalized eigenvalue problem *Ax*=lambda* *Bx*. In fact I only...

casi 6 años hace | 1 respuesta | 0

1

respuesta

Pregunta


Fast ismember for object arrays
I have an object oriented code which calls the _ismember_ function many times. I saw forum discussions recommending the unducume...

alrededor de 6 años hace | 0 respuestas | 0

0

respuestas

Pregunta


Progress bar for file download
I would like to know how much of a file is downloaded when using *urlwrite*. It gives indication to the user about the process.

alrededor de 6 años hace | 0 respuestas | 0

0

respuestas

Pregunta


Graphical issues when opening an OpenGL program from MATLAB
I use the finite element visualizer *GLVis*, based on OpenGL. When I run it from the terminal, it works as it should. However, w...

más de 6 años hace | 0 respuestas | 0

0

respuestas

Pregunta


parfor results core dump
MATLAB R2015b crashes on 64 bit Linux. I managed to track the cause of failure to this chunk of code values = cell(1, nElem...

más de 6 años hace | 0 respuestas | 0

0

respuestas

Pregunta


Observe graphics object added to the axes
I have an axes object which contains several child objects (lines, patches, etc.). I have a function which sets the callback fun...

más de 6 años hace | 2 respuestas | 1

2

respuestas

Pregunta


Should I indicate no input arguments to a function?
Suppose I have a function which requires no inputs. Should I indicate it with parentheses () or leave it naked? Both cases work,...

más de 6 años hace | 1 respuesta | 0

1

respuesta

Pregunta


Why does the function 'details' show more than 'disp' for objects?
According to the documentation, the 'details' function provides more information when the input is an object than 'disp'. Howeve...

alrededor de 7 años hace | 1 respuesta | 1

1

respuesta

Pregunta


Test suite for regular expressions
Where could I find a test package for regular expressions in MATLAB? There are many in different languages, but the MATLAB synta...

más de 7 años hace | 1 respuesta | 2

1

respuesta

Pregunta


Where is MATLAB's function browser in the Editor?
In older MATLAB releases (e.g. 2011a), there was an icon in the Editor which popped up the functions seen in an m-file so that I...

alrededor de 8 años hace | 1 respuesta | 0

1

respuesta

Pregunta


Return output from the main function after a specific callback
I am building a GUI programatically. I created a *_main_* function which sets the GUI objects and their callback definitions. Af...

alrededor de 8 años hace | 1 respuesta | 0

1

respuesta

Pregunta


Dependent property is shown in the variable editor even before its get method
I have a class with a dependent property. But even before I invoke its get method, its value is shown in the Variable Editor. Ho...

alrededor de 8 años hace | 1 respuesta | 0

1

respuesta

Respondida
How to assign pointers to an object's property?
After thorough discussions, the answer can be found on <http://stackoverflow.com/questions/33543906/how-to-assign-pointers-to-an...

más de 8 años hace | 1

| aceptada

Pregunta


How to assign pointers to an object's property?
I want to create a finite element object oriented program. I have a class *Node*. Since the nodes in a finite element mesh (repr...

más de 8 años hace | 1 respuesta | 1

1

respuesta

Pregunta


How to call subclass constructor
I have a class *mesh1D*. I want to create an another class, called *crack* to be the subclass of *mesh1D*. My subclass has one (...

más de 8 años hace | 1 respuesta | 0

1

respuesta

Pregunta


How to efficiently update an image if one matrix element is changed
I have a matrix in which I change only one element in every iteration of a loop. I want to display that matrix as an image using...

más de 8 años hace | 1 respuesta | 0

1

respuesta

Pregunta


File path containing %
I would like to get the path for directories containing % (like %MATLAB_ROOT%, %APPDATA%, etc.) in Windows. However, functions l...

más de 8 años hace | 1 respuesta | 0

1

respuesta

Pregunta


Can I use Visual Studio 2013 with MATLAB R2011a unofficially?
Has anyone experience if one can use the Microsoft Visual Studio 2013 compiler with MATLAB R2011a using <http://www.mathworks.co...

casi 9 años hace | 1 respuesta | 0

1

respuesta

Respondida
rand matrix for FM
I recommend you to generate the matrix of the required size and then modify one element of it so that the sum holds. E.g. A ...

alrededor de 9 años hace | 0

Respondida
How can i solve these systems of ODE
Well, you have to solve the system of BVPs several times for each different values of Gr, Pr and Sc. Then you can plot the data ...

alrededor de 9 años hace | 0

Respondida
how to do 1d vector deletion?
% First, delete from index 20000 to 50000 v = v(1:19999); % Delete the index containing the value 132 v = v(v~=132);

alrededor de 9 años hace | 0

Respondida
What is the benefit of using a function handle?
The two statements are not the same. The first one defines a function while the second one is an equality. The two identical for...

más de 9 años hace | 0

Respondida
having trouble to insert text in GUI table
It is because you supplied a string. Convert it to number. edit1 = str2num(edit1); edit1 = ceil(edit1); ...

más de 9 años hace | 0

Respondida
How can i solve these systems of ODE
These are typical boundary layer equations. There are several strategies to tackle it. The two main solution methods: truncate i...

más de 9 años hace | 0

| aceptada

Respondida
open external programs via matlab
If you want to open an external file outside MATLAB, use the <http://www.mathworks.com/help/matlab/matlab_env/run-external-comma...

más de 9 años hace | 3

Respondida
How to call matlab built-in common functions, such as open, save as, in GUI?
If you want to close the figure, do not click on Exit, but on Close. If you want to save something inside the GUI, use <http://...

más de 9 años hace | 0

Respondida
How to avoid a vertical line at discontinuity point?
I advise you to handle the subintervals distinctly and plot them independently from each other. In that case no vertical (more p...

más de 9 años hace | 0

Cargar más