photo

Geoff


2012년부터 활동

Followers: 0   Following: 0

메시지

I use MATLAB for small jobs and C++ for real jobs.
Professional Interests: Problem solving

통계

All
MATLAB Answers

5 질문
342 답변

Cody

0 문제
31 답안

순위
145
of 300,364

평판
866

참여
5 질문
342 답변

답변 채택
60.0%

획득한 표
164

순위
 of 20,934

평판
N/A

평균 평점
0.00

참여
0 파일

다운로드 수
0

ALL TIME 다운로드 수
0

순위
16,159
of 168,407

참여
0 문제
31 답안

점수
330

배지 수
2

참여
0 게시물

참여
0 공개 채널

평균 평점

참여
0 하이라이트

평균 좋아요 수

  • 6 Month Streak
  • Thankful Level 1
  • Pro
  • Revival Level 1
  • Knowledgeable Level 5
  • First Answer
  • Commenter
  • Solver

배지 보기

Feeds

보기 기준

답변 있음
HOW CAN I CALCULATE THE SIGNAL TO NOISE RATIO(SNR) OF A CHIRP SIGNAL
From Wikipedia: http://en.wikipedia.org/wiki/Signal-to-noise_ratio NR = Psignal / Pnoise = (Asignal / Anoise)^2 Where P is powe...

4년 초과 전 | 0

| 수락됨

답변 있음
Help with proper parfor
You can't write to a parallel-segmented matrix in the inner loop. Try this: parfor i=1:r col = zeros(n,1); f...

13년 초과 전 | 0

| 수락됨

답변 있음
How can I import a .txt file correctly using textscan?
The way to have the most control over a line-based txt file import is to read it one line at a time: while !feof(fid) ...

13년 초과 전 | 1

답변 있음
Script adapted into a funtion Function not returning equal values
Floating point precision errors. If you need to test for zero, then test for something like: if abs(value) < 1e-5 10^-5 ...

13년 초과 전 | 0

| 수락됨

답변 있음
time to number conversion
From memory, if you use |datenum| to just get the time with no date, it doesn't return a number between 0 and 1. But you can ge...

13년 초과 전 | 0

| 수락됨

답변 있음
Do you think that MATLAB is expensive?
Yes, I think it is expensive. In New Zealand, it's about $2000 per toolbox. The compiler is over $8000. The work I was doin...

13년 초과 전 | 0

답변 있음
Can you use cell or struct as function input?
Yes, and yes. I'm puzzled that you're asking this here when you could quite easily test for yourself... Part of the process ...

13년 초과 전 | 3

| 수락됨

답변 있음
Save data from a loop
I think this might be what you want: for f = 1:40 for g = 1:40 i = (f-1) * 40 + g; dpTxcouple1(:,:,i) = ...

13년 초과 전 | 0

답변 있음
Answering my own question
If it really is about something cool, then I'm in agreement with the others. Go for it... People could still add their own ans...

13년 초과 전 | 0

답변 있음
can someone explain this code?
|x1_Y| is an array of indices. You're doing a boolean test on |x1(10:300)| to determine if a point is an outlier. That is, it ...

13년 초과 전 | 0

| 수락됨

답변 있음
Need some assistance with "if" command
Oh, the better way is to use the proper MATLAB error function: if a < 0 error( 'Not a valid input.' ); end

13년 초과 전 | 0

답변 있음
Need some assistance with "if" command
If you don't have a function or anything to return from, there's a sneaky little trick you can use. This can be useful for othe...

13년 초과 전 | 0

| 수락됨

답변 있음
As a Software Engineer, Why should I use MATLAB?
From one developer to another, the answer is: *why not??* What do you have to lose from having another tool (or rather, arsen...

13년 초과 전 | 1

답변 있음
frequency
<http://www.google.com/?q=quiescent+frequency>

13년 초과 전 | 0

| 수락됨

답변 있음
What do I have to do to sort strings properly in Listbox?
Don't ask the same question just because nobody answered it yesterday. If you are impatient, write a comment on it to bump it b...

13년 초과 전 | 0

| 수락됨

답변 있음
how to convert Julian date to Gregorian date ?
Use |datestr|

13년 초과 전 | 0

| 수락됨

답변 있음
realtime data streaming between matlab and opencv, visual c++
How "realtime" do you need? If you were polling a file multiple times a second, would that be sufficient? Can you do your anal...

13년 초과 전 | 0

답변 있음
fprint error
Like the error message says, some of your inputs are structs, and that's not allowed. Run the following code to check the types...

13년 초과 전 | 0

답변 있음
What is the purpose of this line in MATLAB's "factorial.m" function?
I would hazard that it is there to handle the special case of computing zero-factorial, which of course is 1.

13년 초과 전 | 0

답변 있음
importing csv array of unknown size, characters
So the general thing is this... Keep track of the current state outside the loop: line_num = 0; % Current CSV line number...

13년 초과 전 | 1

답변 있음
Non-numeric matrix to string
It's not a matrix. It's a cell array. You can try converting the whole thing to strings with something like: [M{:}] ...

13년 초과 전 | 0

| 수락됨

답변 있음
Computer Vision - Feature Detection and Tracking - Tracking a RC car in a video
Of course, but you might have to implement a bunch of complex algorithms yourself. If you're not familiar with vision processin...

13년 초과 전 | 0

답변 있음
Find Min& Max Togather
Well, I do it like this: function [Amin, Amax] = minmax( A ) Amin = min(A); Amax = max(A); end Note: Not to...

13년 초과 전 | 0

답변 있음
Slightly off topic: determining at the Windows system level when my process is done
Why don't you invoke the shutdown as the last thing your MatLab script does?

13년 초과 전 | 1

답변 있음
Matrix to Table format
Are you saying you want to generate the SQL: CREATE TABLE my_table blah blah blah Followed by INSERT INTO my_table ...

13년 초과 전 | 0

답변 있음
Combine Two Different Images With Different Gain Values
Here's what I'd do... Convert all your images to 16-bit. Then take the factor-1 image, multiply it by 10. Then take the fac...

13년 초과 전 | 1

| 수락됨

답변 있음
Temporal processing of image stack
Well, I'm not known for my solutions that take advantage of inbuilt MatLab functions... Maybe something like |filter| would be ...

13년 초과 전 | 0

답변 있음
Financial contract value
Just a snippet of coding advice from me... If you need to use a number more than once, especially if it relates to how many v...

13년 초과 전 | 0

답변 있음
Entering data into MATLAB from a csv file containing both data and letters
textscan(currentLine, '%s%s%c%d%d%d%d%f%f')

13년 초과 전 | 0

답변 있음
Deleting X-Y points that are not near other points on a field of data points
Naive (brute force) implementation given by per isakson looks sufficient for this problem. O(N^2) is okay for 900 rows. For la...

13년 초과 전 | 0

더 보기