Community Profile

photo

Merse Gaspar


Last seen: 5 months ago Active since 2019

Followers: 0   Following: 0

Statistics

  • Thankful Level 3

View badges

Feeds

View by

Question


How to extract indices of matching strings in the following problem?
Suppose I have an ordered string structure like this: {'word1','word2','word3','word4','word5','word6'.etc.} And I have another...

7 months ago | 1 answer | 0

1

answer

Question


How can I disable fminsearch function to print a warning message?
warning('off') is not workink. Why? I get the following message: Exiting: Maximum number of function evaluations has been exceed...

8 months ago | 2 answers | 0

2

answers

Question


How to intialize a gui panel and make it visible? Why is it different from creating a button? (see example)
function gui_example f = figure('Visible','off','Position',[0,0,600,400]); mybutton = uicontrol('Style','pushbutton','String',...

11 months ago | 1 answer | 0

1

answer

Question


How to define the order of layers/plots and axes?
I have some plots: p1 = plot(...); p2 = scatter(...). p3 = line(..); p4 = fill(...), p5 = imagesc(...); etc. How to do the foll...

11 months ago | 1 answer | 0

1

answer

Question


Is it possible to handle a slider with an 'on-line' update? I mean, updating the value continously during the sliding.
As far as I see, the callback function is called and executed when the slider is released. But is it possible to update somethin...

11 months ago | 1 answer | 0

1

answer

Question


Is it possible to plot a curve with changing colours under a single plot?
A would like to plot a curve with different colour line segments, and I need to do it under a single plot handle. Is it possible...

11 months ago | 2 answers | 0

2

answers

Question


How to use subroutines inside subroutins in GUI functions?
If I make a function in a GUI function, it can access the global variables of the GUI, so I can use it like a subroutine. But ho...

11 months ago | 2 answers | 0

2

answers

Question


Is it possible to pass a variable throu a callback function?
My problem is, that I have lots off similar buttons, generated inside a for cycle, and I dont want to write the same number of c...

11 months ago | 1 answer | 0

1

answer

Question


How to write a subfunction inside a GUI function?
I Would like to write a subfunction or subscript inside a GUI, but not a callback function, and I want to use any kind of global...

11 months ago | 1 answer | 0

1

answer

Question


How to put a figure window in the center of the screen?
Is it possible to put a figure (for example a GUI window) in the center of the screen? How to get screen size in pixels, or how ...

11 months ago | 2 answers | 0

2

answers

Question


How to 'load' data inside a parfor loop in an effective way?
Let suppose the following general code structure. parfor i = 1:10000 result(i) = myfunc(data(i)); end or parfor i = ...

4 years ago | 1 answer | 0

1

answer