Nathan Fellman

8,699
reputation
878 views

Registered User

name Nathan Fellman
member for 1 year
seen 32 mins ago
website
location Israel
age 33
I'm a HW Validation Engineer, which means I'm not strictly a SW guy. I've got lots of experience with C, Perl and X86 assembly, which simply comes with the job.
18h
comment Mandatory use of braces
Consider if you put a debug print after the if. If you don't have braces, the if now affects only the debug print, and not the statement under it. I've been burned by this more than once when debugging code in which the brace rule wasn't enforced.
Dec
14
comment expected expression before return
The error in gcc is "parse error before "return"
Dec
14
revised Is it harmful to put any comment as a first thing in CSSfile?
spelling
Dec
14
comment How can I generate non-repetitive random 4 bytes hex values in Perl?
Note that if your random number generator is broken and always returns a small set of numbers, this will yield an infinite loop. You might want to think of an alternative to getting a new random number if the random number generator returned the same value twice, such as multiplying the two previous numbers. Note that this may result in lower entropy, but will solve the problem with infinite loops.
Dec
8
accepted How to jump to the next tag in vim help file
Dec
7
asked How can I draw a circle on an image in MATLAB?
Dec
7
comment How can I find local maxima in an image in MATLAB?
Steve's answer is indeed more elegant.
Dec
7
comment How can I find local maxima in an image in MATLAB?
Can you explain how this works?
Dec
6
comment How can I find local maxima in an image in MATLAB?
oh... and I fixed the question to show that I'm working with grayscale.
Dec
6
revised How can I find local maxima in an image in MATLAB?
added 10 characters in body
Dec
6
comment How can I find local maxima in an image in MATLAB?
I want to exclude them.
Dec
6
comment How can I find local maxima in an image in MATLAB?
Thanks! I see that imregionalmax finds maxima that are greater than or equal to their neighbors. Do you know how I can find only those that are greater and not equal to their neighbors?
Dec
6
asked How can I find local maxima in an image in MATLAB?
Dec
6
comment Benefits of x87 over SSE
So your bottom line is: (a) x87 has good legacy support (b) x87 has been well studied.
Dec
3
comment How can I get the second-level keys in a Perl hash-of-hashes?
answers shouldn't be in German, since non-German speakers will also want to know the answer
Dec
2
revised one Dimensional gauss convolution function in Matlab
edited title
Dec
2
comment one Dimensional gauss convolution function in Matlab
what happens when you execute the exp with a scalar?
Dec
2
revised one Dimensional gauss convolution function in Matlab
formatted the code
Dec
2
revised How to jump to the next tag in vim help file
added 316 characters in body
Dec
2
answered How to jump to the next tag in vim help file
Nov
30
revised Opening gzipped files for reading in C without creating temporary files
added 182 characters in body
Nov
30
answered Opening gzipped files for reading in C without creating temporary files
Nov
30
comment Opening gzipped files for reading in C without creating temporary files
You can use the fdopen function to open a file descripto as a FILE pointer.
Nov
28
comment x86 and x64 stack frames
But that doesn't change between 64-bit and 32-bit compilers. The example in the question is just that, an example. I would assume that i is something that will be used a few times down the line and won't be compiled away.
Nov
28
revised x86 and x64 stack frames
formatting
Nov
28
comment x86 and x64 stack frames
does it matter why?
Nov
25
answered Numpy - show decimal values in array results
Nov
25
awarded  Popular Question
Nov
24
asked How do I sample a matrix in MATLAB?
Nov
24
revised Recursive function that divides two numbers, using successive subtraction
edited title
Nov
23
comment How is the x64 architecture different from x86
hmm... Then I must be misunderstanding what deprecated means :-). What does it mean?
Nov
23
answered How is the x64 architecture different from x86
Nov
23
comment How is the x64 architecture different from x86
Actually, in x86 you have 32-bit, 16-bit and 8-bit general purpose registers. Besides that, you have 8 64-bit MMX registers and 8 128-bit SSE registers. In x64 you have all that plus: all 32-bit registers can be extended to 64 bits, you have 8 more GPRs and 8 more SSE registers.
Nov
23
comment How is the x64 architecture different from x86
The x87 FPU is just as available in x86-64 as in x86. You can use it the same as you used to able to.
Nov
23
comment How is the x64 architecture different from x86
I'd give jalf credit for wanting to focus the question in the direction Scott J needs, and not for discouraging the question.
Nov
22
asked How can I convert a color image to grayscale in MATLAB?
Nov
22
awarded  Popular Question
Nov
21
accepted Utilizing the LDT (Local Descriptor Table)
Nov
21
revised Is there a complete x86 assembly language reference that uses AT&T syntax?
edited body
Nov
21
revised Nth Combination
formatting
Nov
21
comment Utilizing the LDT (Local Descriptor Table)
This is the breakdown: c7 is the opcode for MOV r/m32, imm32. 05 is the MOD/RM byte, which says that the memory operand is addressed only by displacement. The displacement is in the following four bytes: 0x08049e8c. The next four bytes are the immediate 0x3424cafe. This means that the offset of mx inside the default data segment is 0x08049e8c, and that's the offset inside the new DS that you're accessing.
Nov
20
answered Utilizing the LDT (Local Descriptor Table)
Nov
17
awarded  Notable Question
Nov
17
awarded  Popular Question
Nov
15
answered C structs don’t define types?
Nov
12
comment perl subroutine call
Is this really a better solution than just calling &f1()?
Nov
12
comment perl subroutine call
You should add the -w switch if you really want this to fail
Nov
12
comment C Interview questions
what's the point of this question? Have you considered fixing the typos?
Nov
11
revised Generate Square Mesh, Given an Unordered X, Y and Z Vectors
add an example
Nov
11
comment Generate Square Mesh, Given an Unordered X, Y and Z Vectors
you're right... fixed!