D. Plotnick
Followers: 0 Following: 0
Statistica
RANK
1.187
of 295.448
REPUTAZIONE
60
CONTRIBUTI
60 Domande
11 Risposte
ACCETTAZIONE DELLE RISPOSTE
78.33%
VOTI RICEVUTI
39
RANK
of 153.872
CONTRIBUTI
0 Problemi
0 Soluzioni
PUNTEGGIO
0
NUMERO DI BADGE
0
CONTRIBUTI
0 Post
CONTRIBUTI
0 Pubblico Canali
VALUTAZIONE MEDIA
CONTRIBUTI
0 Punti principali
NUMERO MEDIO DI LIKE
Feeds
Domanda
Multiple function "instances" of functions with persistent variables
Hello all, I think this is best shown using an abstract example: function out = myFun(varIn,persIn) persistent myPersistent ...
oltre 5 anni fa | 1 risposta | 0
1
rispostaDomanda
Timeout when running tcpip in server mode OR how to force fopen to return after a set timeout
Hello all, I found and was playing with Matlab's ability to act as tcpip server: t = tcpip('localhost',30000,'NetworkRole',...
oltre 5 anni fa | 0 risposte | 1
0
risposteDomanda
Nested function capability with non-nested functions for GUIs
Hello all, I am working on a GUI which started off rather small and simple, and so I used nested functions for handling the GU...
oltre 5 anni fa | 0 risposte | 0
0
risposteDomanda
Smoothly interact (pan, rotate, zoom) with an updating figure (animation).
Hello all, I am attempting to allow user interactions such as pan and rotate with a figure, where the contents of the figure a...
oltre 5 anni fa | 1 risposta | 0
1
rispostaDomanda
Why can't a concrete subclass use size and validator functions on abstract superclass properties?
Hello all, I will throw together a little example here; lets create an abstract super class (containing mixed abstract and con...
oltre 5 anni fa | 5 risposte | 1
5
risposteDomanda
For objects in some hierarchy, what is the best practice for parent-child methods/properties that define the relationship? (ALT: is the arm-bone connected to the hand-bone, or vice versa?)
Hello all, I think it is best to begin with an example that uses human anatomy as a metaphor; we will begin with two classes. ...
oltre 5 anni fa | 1 risposta | 0
1
rispostaDomanda
[GPU] Why do GFLOPS of element-wise matrix operations (addition, multiplication) seem to scale poorly as compared to e.g. mtimes?
Hello all, BLUF: Why do element-wise operations on the GPU seem to scale more slowly than operations like mtimes; even if A+B ...
oltre 5 anni fa | 1 risposta | 1
1
rispostaDomanda
Subclassing Matlab built-in types w/ properties: concise basic operations and flexible superclass
Hello all, I recently realized that there is considerable inherent power in subclassing Matlab primitives like double or char ...
oltre 5 anni fa | 0 risposte | 0
0
risposteDomanda
Flexible property class validation; allow property to be one of several classes (or be a gpuArray)?
Hello all, this is an example of what I am trying to do: classdef myClass properties val (:,1) single = 0; % Som...
oltre 5 anni fa | 0 risposte | 0
0
risposteDomanda
Using Property Blocks : Set/get on properties within a single property block
Hello all, Yet another classdef question from me. Let us say I have a bunch of properties for some custom class, and that some...
oltre 5 anni fa | 2 risposte | 1
2
risposteDomanda
Resetting individual properties to default values: 2018b
Hello all, I am trying to figure out how to reset class properties of the following form: classdef myClass properties ...
oltre 5 anni fa | 1 risposta | 0
1
rispostaDomanda
[Warning] Why is it bad practice to set additional class properties when using a set method (prompting a warning)?
I have a class with several properties, and I want it so that if I set one of those properties, it effectively resets additional...
oltre 5 anni fa | 2 risposte | 0
2
risposteDomanda
Classdef get methods: allowing get indexing into an array of length either (1x1) or (Nx1).
Hello all, I am trying to sort out an issue best shown in this MWE, where I have a property that may be a column vector, but is ...
oltre 5 anni fa | 2 risposte | 0
2
risposteDomanda
Passing "handle" for variable to low-level functions
Hello all, So a very similar question was asked here in 2012, and the answer was 'no', but I wanted to find out if there was a...
oltre 5 anni fa | 0 risposte | 0
0
risposteDomanda
Using 'doc' on overloaded/overridden classes: Help only shows the Matlab class documentation
Hello all, I have what is hopefully a simple issue to remedy. I have created a custom class that turns out to overload some Ma...
oltre 5 anni fa | 1 risposta | 0
1
rispostaDomanda
[Plotting] Two x and y axes for the same data, with different units, and axis equal
Hello all, I have asked a similar question before, but have yet to find/create a satisfactory solution. I am attempting to plo...
quasi 6 anni fa | 1 risposta | 1
1
rispostaDomanda
Accessing gpuDevice WITHOUT resetting it, and without carrying around a gpuDevice handle, or declaring a global
Hello, I have a question which sparked the issue I am having here: I want to access my gpuDevice properties, namely the Availa...
quasi 6 anni fa | 1 risposta | 0
1
rispostaDomanda
Checking if persistent variable exists on GPU: check if 'data no longer exists on the GPU' for a variable.
Hello, I am running into an issue if I have persistent variables that I am storing as GPU arrays. This is especially useful if...
quasi 6 anni fa | 1 risposta | 0
1
rispostaDomanda
Reduction variables on the GPU II and arrayfun: cannot assign to parent function variable?
Hello, This is (hopefully) a simple reduction variable question for performing parallel GPU operations onto a single value. I...
quasi 6 anni fa | 1 risposta | 0
1
rispostaDomanda
Setting object properties without returning the object using obj = obj.myfun(obj,argin)
Hello all, I have a syntax question. I want to be able to set or add to properties of a custom class, but without using the cu...
circa 6 anni fa | 1 risposta | 0
1
rispostaDomanda
Using reduction variables on the GPU: arrayfun or other options
Hello all, I am trying to figure out whether/how to use a reduction variable as the output of an arrayfun performed on the G...
circa 6 anni fa | 1 risposta | 0
1
rispostaError when using uigetdir() in deployed MATLAB application (java.lang.IllegalArgumentException: eval requires a valid MCR id when running in standalone mode)
I am also still seeing this issue with Update 4.
oltre 6 anni fa | 0
Domanda
Restricting method access to classes, NOT methods of classes
Hello all, I am trying to understand some method access capabilities, so that methods can only my accessed by objects of a c...
oltre 6 anni fa | 1 risposta | 0
1
rispostaHow do I find the index of a datapointon a MATLAB plot?
This is my kludgy workaround: instead of plot(x,y) do plot3(x,y,1:length(x)); view(0,90) NOW use your data...
oltre 6 anni fa | 6
Domanda
Debugging: finding all instances of gpuArray in large code base [or finding all instances of other function calls]
Hello all, I am building a code set that I prefer to run on the GPU, but would also like to be capable of executing on a non...
oltre 6 anni fa | 1 risposta | 0
1
rispostaDomanda
Finding files WITHOUT a specfic prefix (or suffix, extension, etc.) using dir
Hello all, I have a question partly inspired by the question <https://www.mathworks.com/matlabcentral/answers/352046-find-file...
oltre 6 anni fa | 1 risposta | 0
1
rispostaDomanda
GPU memory overhead dependent on fft dimension.
Hello all, I have a question regarding memory management during Matlab's gpuArray/fft operation. I have a large NxM matrix [N ...
oltre 6 anni fa | 1 risposta | 0
1
rispostaIndex with for loop variable name and definition
If I understand your question, it is parallel to the one <https://www.mathworks.com/matlabcentral/answers/105936-how-to-make-dyn...
oltre 6 anni fa | 1
| accettato
How can I circle fit 6 points and find the center?
Least squares fitting: examples in 2D: https://www.mathworks.com/matlabcentral/fileexchange/22643-circle-fit--pratt-method-...
oltre 6 anni fa | 0
Save Image Files in a loop
Something _like_ this should work: just iterate over the save-name for the image. for i = 1:I image = doStuff(data); imag...
oltre 6 anni fa | 2
| accettato