Statistics
RANK
2,762
of 295,467
REPUTATION
21
CONTRIBUTIONS
1 Question
6 Answers
ANSWER ACCEPTANCE
0.0%
VOTES RECEIVED
6
RANK
of 20,234
REPUTATION
N/A
AVERAGE RATING
0.00
CONTRIBUTIONS
0 Files
DOWNLOADS
0
ALL TIME DOWNLOADS
0
CONTRIBUTIONS
0 Posts
CONTRIBUTIONS
0 Public Channels
AVERAGE RATING
CONTRIBUTIONS
0 Highlights
AVERAGE NO. OF LIKES
Feeds
Question
Is there a better way to enforce singleton behavior in AppDesigner applications?
When you click "Run" from inside the App Designer window, any existing instance of that app will be closed before a new one is c...
4 years ago | 1 answer | 3
1
answerGrouping into a table
In a situation like this, I usually plan out the table I want to see in advance, and then create variables that I can use to cre...
4 years ago | 1
| accepted
Need a better way to loop through a Matrix column and then output the row
Something like this for k = 1:size(Nodal_Coordinates,1) % Find the index of the kth row ind = find(Nodal_Coordi...
4 years ago | 1
| accepted
Is there a -batch option prior to 2019a, i.e., in 2017a
[ EDIT: the command-line below is wrong. See Edric and Steven's comments for the correct way to emulate batch functionality on o...
4 years ago | 0
How to change pixels to a different colour with a greyscale image?
Here's a hacky approach that does the job: I = imread('CTimagem.png'); mask = I < 8000; Ired = I; Igreen = I; Iblue = I...
5 years ago | 0
| accepted
Setting different properties for some line objects stored in the same handle
You can do this with the old-style set() functions, like this: set(h1([3 5]), 'LineWidth', 2); Or you can use deal(), like thi...
5 years ago | 1
How can my function work?
First, change Wans to W everywhere, otherwise you are not setting the output variable. Second, your final elseif should be chan...
5 years ago | 0