Community Profile

photo

Tom Holz


Last seen: 9 jours il y a Actif depuis 2012

Followers: 0   Following: 0

Contact

Statistiques

All
  • Knowledgeable Level 2
  • 3 Month Streak
  • 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
  • R2016b Feature Challenge Master

Afficher les badges

Feeds

Afficher par

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

environ 4 ans il y a | 1 réponse | 3

1

réponse

A répondu
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...

environ 4 ans il y a | 1

| A accepté

A répondu
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...

environ 4 ans il y a | 1

| A accepté

A répondu
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...

environ 4 ans il y a | 0

A répondu
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...

environ 4 ans il y a | 0

| A accepté

A répondu
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...

plus de 4 ans il y a | 1

A répondu
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...

plus de 4 ans il y a | 0