photo

Tom Holz


Last seen: 6 months ago Active since 2012

Followers: 0   Following: 0

Message

Programming Languages:
Python, C++, MATLAB, Fortran
Spoken Languages:
English

Statistics

All
MATLAB Answers

1 Question
6 Answers

Cody

3 Problems
1342 Solutions

RANK
2,837
of 300,321

REPUTATION
21

CONTRIBUTIONS
1 Question
6 Answers

ANSWER ACCEPTANCE
0.0%

VOTES RECEIVED
6

RANK
 of 20,913

REPUTATION
N/A

AVERAGE RATING
0.00

CONTRIBUTIONS
0 Files

DOWNLOADS
0

ALL TIME DOWNLOADS
0

RANK
59
of 168,093

CONTRIBUTIONS
3 Problems
1342 Solutions

SCORE
15,530

NUMBER OF BADGES
56

CONTRIBUTIONS
0 Posts

CONTRIBUTIONS
0 Public Channels

AVERAGE RATING

CONTRIBUTIONS
0 Highlights

AVERAGE NO. OF LIKES

  • Knowledgeable Level 2
  • 3 Month Streak
  • Cody Challenge Master
  • Matrix Manipulation III Master
  • Indexing III Master
  • First Answer
  • Logic
  • Sequences And Series II Master
  • Project Euler I
  • Introduction to MATLAB Master
  • Matrix Manipulation II Master
  • Strings II Master

View badges

Feeds

View by

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...

5 years ago | 1 answer | 3

1

answer

Answered
Grouping 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...

5 years ago | 1

| accepted

Answered
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...

5 years ago | 1

| accepted

Answered
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...

5 years ago | 0

Answered
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

Answered
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...

6 years ago | 1

Answered
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...

6 years ago | 0