royk
Followers: 0 Following: 0
Estadística
16 Preguntas
3 Respuestas
CLASIFICACIÓN
7.970
of 296.389
REPUTACIÓN
6
CONTRIBUCIONES
16 Preguntas
3 Respuestas
ACEPTACIÓN DE RESPUESTAS
68.75%
VOTOS RECIBIDOS
6
CLASIFICACIÓN
of 20.401
REPUTACIÓN
N/A
EVALUACIÓN MEDIA
0.00
CONTRIBUCIONES
0 Archivos
DESCARGAS
0
ALL TIME DESCARGAS
0
CLASIFICACIÓN
of 156.339
CONTRIBUCIONES
0 Problemas
0 Soluciones
PUNTUACIÓN
0
NÚMERO DE INSIGNIAS
0
CONTRIBUCIONES
0 Publicaciones
CONTRIBUCIONES
0 Público Canales
EVALUACIÓN MEDIA
CONTRIBUCIONES
0 Temas destacados
MEDIA DE ME GUSTA
Feeds
Pregunta
When overloading a builtin function: can I copy the original signature to allow auto-complete?
Say I define my own implementation for the plot function: function varargout = plot(varargin) % do my own stuff % ... % ...
más de 2 años hace | 1 respuesta | 0
1
respuestaHow to call a class-specified overloaded version of a function without using an object instance as an argument
thnaks. indeed really what i wanted cause you cannot use the simple notation sin(fc) . but thanks for clarifying that this is...
más de 3 años hace | 0
Pregunta
How to call a class-specified overloaded version of a function without using an object instance as an argument
I have a class: classdef fast_calc < handle properties value end methods function obj = ...
más de 3 años hace | 2 respuestas | 0
2
respuestasPregunta
Live Editor fails displaying myObject
I have a handle class myClass which overloads disp, size, isempty and subsref. An object myObject=myClass won't display in Liv...
casi 4 años hace | 1 respuesta | 0
1
respuestaPregunta
Can a function known whether/which specific output is ignored (tilde operator)?
A function can know the number of requested outputs via nargout. But can it know if a specific output is replaced with tilde o...
más de 4 años hace | 3 respuestas | 3
3
respuestasHoe to implement a listener that deletes its calling object?
thanks Walter What I want to do is is to specifically delete the ROI only after it is moved (the move is important becuase i wa...
más de 4 años hace | 0
Pregunta
Hoe to implement a listener that deletes its calling object?
I would like to trigger DELETE of an IMAGES.ROI object upon ROIMoved event. I am trying: figure(1);clf;axis([0 100 0 100]) ...
más de 4 años hace | 2 respuestas | 0
2
respuestasPregunta
retain autocomplete for overloaded functions
When overloading a builtin function in MYCLASS, is there a way to retain the autocomplete functionality of the original (builtin...
más de 4 años hace | 0 respuestas | 0
0
respuestasPregunta
Apparent bug when images.ROI is placed within an hggroup
I need to place an ROI within a Graphic Group: clf axis([0 10 0 10]) g = hggroup(gca); images.roi.Circle(g,'Center',[4 5],'R...
casi 5 años hace | 1 respuesta | 0
1
respuestaPregunta
num2cell at high dimensions - is this a bug?
Matlab help of num2cell(A,[DIM1, DIM2, ...]) says "All DIMn inputs must be an integer with a value from NDIMS(A) to 1." The f...
alrededor de 5 años hace | 1 respuesta | 0
1
respuestaPregunta
How to call a function only when Matlab is not busy
I have a GUI that needs to run a function if an input file changes. The GUI has a timer that calls a function "checkfiles" to ...
alrededor de 5 años hace | 0 respuestas | 0
0
respuestasPregunta
Replacing variable names when using func2str of anonymous function
I have an anonymous function, say f=@(x,y) x+y; I can name the function using func2str: func2str(f) ans = '@(x,y)x+y' ...
más de 5 años hace | 1 respuesta | 0
1
respuestaPregunta
Programatically creating an anonymous function that separates "Variables" and "Parameters"
I have a function MYFUN with several inputs. Say, myfun = @(a,b,c,d) a*1000 + b*100 + c*10 + d In actuality, some of thes...
más de 5 años hace | 3 respuestas | 2
3
respuestasPregunta
How to get the "zero/blank" element of a given variable?
I have an array VAR of unknown type. When the array is extended, Matlab knowns how to fill in blank ("zero") values of the corre...
más de 5 años hace | 1 respuesta | 0
1
respuestaPregunta
How to implement MyClass that overloads all methods of a certain naitive class ?
I have a class MyClass that has a numerical property Val. I want the class to overload any/all numerical functions, such that fc...
más de 5 años hace | 2 respuestas | 1
2
respuestasHow to make a class object respond to a long stream of event listener callbacks only at the end of the stream of events
looks great - much thanks!!
más de 5 años hace | 0
Pregunta
How to make a class object respond to a long stream of event listener callbacks only at the end of the stream of events
I have an object Obj of a handle class MyClass that listens for "Change" event notifications from other objects. Obj runs an "u...
más de 5 años hace | 2 respuestas | 0
2
respuestasPregunta
How can I find all object of a certain handle class?
I need to find all current object memory instances of a certain handle class "MyClass". I cannot use "findobj" because I do no...
más de 5 años hace | 1 respuesta | 0
1
respuestaPregunta
Axis fontsize and text fontsize not matching
I am using the code below that shows the same text as axis xlabel and as a text object. These two labels appear in different siz...
más de 6 años hace | 2 respuestas | 0