Frage


Suggestion/question: User-friendly tab auto-completions
Hello, I have a question/suggestion about the tab-to-complete box, and improving its utility. I am submitting this here, as t...

fast 6 Jahre vor | 1 Antwort | 0

1

Antwort

Frage


Catching Matlab state variables in the try-catch MException.
Hello, I have a question about error handling. I have a code that is scanning through files and doing some operations on them,...

fast 6 Jahre vor | 1 Antwort | 0

1

Antwort

Beantwortet
How to make a plot with different colors to represent different data values/thresholds?
You can use a nested _switch-case_ statement. Lets say you have data _x,y,state1,state2_. switch state1 ...

fast 6 Jahre vor | 0

Beantwortet
Return true if the elements of the input vector increase monotonically (i.e. each element is larger than the previous). Return false otherwise.
One idea: dx = diff(x); tf = ~any(dx<=0); Note this will also work on matrices, if you want. E.g. to look at each row x ...

fast 6 Jahre vor | 0

Frage


Failing to free GPU memory on cleared/replaced/gathered variables: 2017a
Hello all, I am running into an out of memory error on my GPU (8 GB, GTX 1080). I have drilled down to the code segment that k...

fast 6 Jahre vor | 1 Antwort | 0

1

Antwort

Frage


Advice on when to start writing custom CUDA
Hello all, I currently take advantage of a lot of Matlab's GPU enabled functions (matrix operations, FFTs, etc.) which provide...

fast 6 Jahre vor | 1 Antwort | 0

1

Antwort

Frage


Maximizing code interpretability while minimizing computational cost.
Hello, I have a question about whether there is a current method to maximize code readability while minimizing computational c...

fast 6 Jahre vor | 1 Antwort | 0

1

Antwort

Frage


Coding Practice: Naming and best practices for 'overhead' variables
Hello all, I have a couple of questions regarding what I will refer to as 'overhead' variables. Examples of these would be var...

fast 6 Jahre vor | 1 Antwort | 0

1

Antwort

Frage


Parallel running coroutines in Matlab
Hello, I am wondering if there is any way to get a functional co-routine in Matlab, a function that runs alongside another scrip...

fast 6 Jahre vor | 1 Antwort | 0

1

Antwort

Frage


Allowing unknown parameters in an inputParser
Hello, I am attempting to figure out a better way of handling parameters and passing them through input parsers. Let us say I ha...

etwa 6 Jahre vor | 2 Antworten | 1

2

Antworten

Frage


Boolean style switch-case statements
Hello, I am trying to determine if there is a means of performing Boolean style logic comparisons using the switch-case mecha...

etwa 6 Jahre vor | 1 Antwort | 0

1

Antwort

Frage


Multi-level structure sorting with empty initial structures
Hello all, I am attempting to look through a directory, and, based on parsing the filenames, split filenames into a number of ...

etwa 6 Jahre vor | 0 Antworten | 0

0

Antworten

Frage


Checking partition format before saving.
Hello, I was wondering if there is a simple way to get the format (NTFS, FAT32, etc.) of a directory. The issue is that I ma...

etwa 6 Jahre vor | 1 Antwort | 0

1

Antwort

Frage


Speed of Looped GPU operations with varying input sizes
Hello all, This is a reformulated post related to <https://www.mathworks.com/matlabcentral/answers/361608-speed-of-looped-oper...

mehr als 6 Jahre vor | 0 Antworten | 0

0

Antworten

Frage


Speed of looped operation on a GPU depending on number of iterations in loop?
This is a question that I think will get a bit into the weeds of MATLAB's JIT and GPU toolbox. I will be including a MWE sampl...

mehr als 6 Jahre vor | 1 Antwort | 0

1

Antwort

Frage


Replacing numerics in text using regular expressions.
Hello, I am trying to figure out whether it is possible to dynamically replace numeric values in a long text block using regul...

mehr als 6 Jahre vor | 2 Antworten | 0

2

Antworten

Frage


Cubic interp1 on a GPU array: bug?
This may be better to put into bug reporting, but has anyone else received the message: gpuArray does not support the cubic...

fast 7 Jahre vor | 1 Antwort | 0

1

Antwort

Frage


How to implement function hints in your code
I have seen that this has been asked previously, but never answered, and I want to know if this should go in as a feature reques...

fast 7 Jahre vor | 1 Antwort | 14

1

Antwort

Frage


Valley/Ridge tracing in N-D data
This is both a question about whether an appropriate Matlab method/toolbox exist, or if the mathematically inclined folks on her...

fast 7 Jahre vor | 3 Antworten | 0

3

Antworten

Frage


Fast access/concatenation of large array structure
I have a large structure array (500K+ items), and I wish to access certain fields of the that array and concatenate the results....

etwa 7 Jahre vor | 1 Antwort | 0

1

Antwort

Frage


How to recast a superclass object into a subclass based on internal information?
I recently put up <https://www.mathworks.com/matlabcentral/answers/335298-can-i-use-subclass-folder-inside-superclass-folders-t...

etwa 7 Jahre vor | 1 Antwort | 1

1

Antwort

Frage


Can I use @subClass folder inside @superClass folders to create a class hierarchy?
I am working on creating a large set of classes in matlab, and the super-class/sub-class setup looks like it will be best. I als...

etwa 7 Jahre vor | 5 Antworten | 0

5

Antworten

Frage


memmapfile and importing big-endian data
I need to import a large mixed-format binary file. This is best done using memmapfile. However, the data has also been written i...

etwa 7 Jahre vor | 1 Antwort | 2

1

Antwort

Frage


memmapfile and alternative data formats (char, complex, etc.)
This is both a request for expanded Matlab capabilities in future versions, and a question as to whether better methods than use...

etwa 7 Jahre vor | 1 Antwort | 0

1

Antwort

Frage


Controlling current axes within programmatic UI (GUI layout toolbox)
I am currently building a programmatic UI using the GUI layout toolbox (GLT), and I am having difficulty convincing Matlab to us...

etwa 7 Jahre vor | 1 Antwort | 0

1

Antwort

Beantwortet
For Loop With Non-Intergers and Looping Over Multiple Values in One Step
IF I understand your question (try providing a minimal working example next time of what you want to do, below is a sample MWE),...

etwa 7 Jahre vor | 0

Beantwortet
Filling in Matrix (Interpolation
You can either break up the columns, or do it in one go. Example below. In future, please include how you ran interp1 or any...

etwa 7 Jahre vor | 2

Beantwortet
How to make functions run in parts of for loop
I don't know if there is a way to avoid having a bunch of _if_, _elseif_, _else_ statements, although the idea of logical indexi...

etwa 7 Jahre vor | 0

Frage


Rotation, time-span, and transparency for geotiffs and geotiffwrite
Hello, So, I am playing around with exporting geotiff files to Google Earth (GE), and there are three capabilities I would l...

etwa 7 Jahre vor | 0 Antworten | 0

0

Antworten

Frage


Dynamic variable names for full workspace operations
To start with, I understand dynamic variable names are bad. I am not _really_ trying to use them. What I really want to do is ap...

etwa 7 Jahre vor | 3 Antworten | 2

3

Antworten

Mehr laden