![photo](/responsive_image/150/150/0/0/0/cache/matlabcentral/profiles/26387082_1651153961345_DEF.jpg)
Captain Karnage
Followers: 0 Following: 0
Python, C++, C, Javascript, MATLAB, SQL, HTML, CSS, Perl, Fortran, Visual Basic
Spoken Languages:
English, French
Statistik
RANG
3.585
of 297.016
REPUTATION
15
BEITRÄGE
17 Fragen
21 Antworten
ANTWORTZUSTIMMUNG
41.18%
ERHALTENE STIMMEN
8
RANG
of 20.419
REPUTATION
N/A
DURCHSCHNITTLICHE BEWERTUNG
0.00
BEITRÄGE
0 Dateien
DOWNLOADS
0
ALL TIME DOWNLOADS
0
RANG
of 157.725
BEITRÄGE
0 Probleme
0 Lösungen
PUNKTESTAND
0
ANZAHL DER ABZEICHEN
0
BEITRÄGE
0 Beiträge
BEITRÄGE
0 Öffentlich Kanäle
DURCHSCHNITTLICHE BEWERTUNG
BEITRÄGE
0 Highlights
DURCHSCHNITTLICHE ANZAHL DER LIKES
Feeds
How do I check if a property exists for an empty object?
After typing it out and pondering for just a little bit, I figured it out. Would still be nice if isprop worked, but this statem...
mehr als ein Jahr vor | 1
Frage
How do I check if a property exists for an empty object?
I have a function that gets passed an object named exObj . The intent is this object can be one of a set of custom class objects...
mehr als ein Jahr vor | 1 Antwort | 0
1
AntwortFrage
What are Some General Tips for Making a Simulink model itself more efficient?
For MATLAB, there's a general rule of trying to vectorize operations to make MATLAB more efficient, and a few other general ways...
mehr als ein Jahr vor | 1 Antwort | 0
1
AntwortFrage
How can I use a mask to switch between internal and external clock in a referenced subsystem?
Here's my situation: I have a subsystem saved as its own file, let's call it "DDS.mdl" I use a Referenced Subsystem block to u...
mehr als ein Jahr vor | 1 Antwort | 0
1
Antworthow to automatically sprintf an array elements
Here's another alternative, more verbose but on a single line: A1 = [1 14 20 8]; A2 = [5 1 20]; A3 = [2]; ...
mehr als ein Jahr vor | 0
Non-scalar enumerations of class double
There's a few problems with attempting to do this in MATLAB. First, though you can make an enumeration a subclass of a built-in ...
mehr als ein Jahr vor | 0
Frage
Check Thyristor Holding Current in Simscape model
I am using a thyristor in a Simulink Simscape electrical model. I have copied over all of the applicable parameters from the man...
mehr als ein Jahr vor | 1 Antwort | 0
1
AntwortArray of properties of an array of objects
I was feeling extra crazy today, so I decided to set out to actually answer the OP's original question as stated. "Is there a w...
mehr als ein Jahr vor | 0
Array of properties of an array of objects
Here's one possibility. Add this function (that I'm just calling get, but name it whatever you want) as a method in your class. ...
mehr als ein Jahr vor | 0
How to support default parameter in MATLAB FUNCTION ?
Yet another update. As of R2021a, MATLAB supports name/value arguments using either the old, quoted name, value list syntax or n...
mehr als ein Jahr vor | 1
Frage
Vectorize a table row with mixed numeric values
MATLAB has the ability to concatenate different numerical types and make an array of the type with the most precision, sort of. ...
mehr als ein Jahr vor | 1 Antwort | 0
1
AntwortWhy is during intgration of velocity signal in simulink exhibits drift in position signal ?
This is an old question, and I can't say for sure without seeing your exact Simulink model, but here is a potential answer. When...
mehr als ein Jahr vor | 0
How to Filter a Commanded Position to have Velocity and Acceleration Limits in Simulink
I believe I have a much simpler solution if you'd like to see it. First of all, for your velocity limit, use the built-in rate ...
fast 2 Jahre vor | 1
How to get the name of the calling class in a static method?
Another option is you can pass an empty version of the subclass enumeration to the superclass method. This would mean you have t...
fast 2 Jahre vor | 0
OOP: Reference (subclass) enumeration names from static superclass method. Possible?
If your goal is to make this function only accessible from the superclass and its subclasses, and you want to just be able to ed...
fast 2 Jahre vor | 1
How do I create a property in a class that is a direct handle to another class object
Here is a lighter weight Class that achieves my original goal. Similar to HandleObject, it stores an existing object inside as a...
fast 2 Jahre vor | 0
| akzeptiert
Converting a comma separated list into an array concatenates them.
This can also be done in one line (using type for an example): If you want a horizontal array: typearr = string({B0005.cycle.t...
fast 2 Jahre vor | 0
Save button disabled when editing an App Designer App
I'm not sure what went wrong, but a link to a custom component I had "broke". I think it had to do with the fact that I had an O...
fast 2 Jahre vor | 0
| akzeptiert
Arguments accept char, string or "cellstr" (cell array of char or string)
If cell arrays of strings wasn't a requirement, MATLAB already has an easy built-in solution with mustBeText: arguments th...
etwa 2 Jahre vor | 0
Frage
Arguments accept char, string or "cellstr" (cell array of char or string)
I have a large number of functions I eventually intend to be redistributable at my company. I had started creating my own variab...
etwa 2 Jahre vor | 3 Antworten | 0
3
AntwortenFrage
Save button disabled when editing an App Designer App
I'm having a seemingly bizarre issue with an Application I'm making in App Designer. I have multiple .mlapp application files th...
etwa 2 Jahre vor | 2 Antworten | 0
2
AntwortenHow do I create a property in a class that is a direct handle to another class object
After contemplating this for a while, I came up with my own solution. I attempted a "universal" solution that will create a hand...
etwa 2 Jahre vor | 1
Frage
How do I properly convert a 64-bit binary string / Convert directly from bin or hex to uint64
I have a matlab function that reads in serial data and breaks it apart into component signals. Each serial data packet is 64 bi...
etwa 2 Jahre vor | 2 Antworten | 0
2
AntwortenFrage
How do I create a property in a class that is a direct handle to another class object
Currently I have two classes, a class that contains a structured definition, and another class that is supposed to fit that defi...
etwa 2 Jahre vor | 3 Antworten | 0
3
AntwortenCreating a logical array
What's the ultimate goal? If you need to initialize a logical array, you can use true or false: either logicalArray = false(1,...
etwa 2 Jahre vor | 1
Frage
Determine what UI Object Called a Context Menu
This seems like a pretty basic question. I have a pretty complex App created in App Designer. I have finally finished all of my...
etwa 2 Jahre vor | 1 Antwort | 0
1
AntwortHow to detect if passed handle is a handle to an App Designer Application
I just accidentally found out the answer to my own question when troubleshooting a different problem. The following isa command ...
etwa 2 Jahre vor | 0
| akzeptiert
Frage
How to detect if passed handle is a handle to an App Designer Application
Background I have a function which I'm calling from multiple other functions that takes in a Handle to an object, and then retu...
etwa 2 Jahre vor | 2 Antworten | 0
2
AntwortenRetrieve legend handles and text
I'll admit that findobj is a quicker, easier way to find the legends, but in case you want a way that kind of shows you the stru...
etwa 2 Jahre vor | 0
Frage
Why does the font size in my Axes change spontaneously?
I have an application that has 3 axes inside of it - named 'Top', 'Middle', and 'Bottom'. They are used to compare similar sets ...
etwa 2 Jahre vor | 1 Antwort | 0