Statistics
RANK
34,563
of 295,467
REPUTATION
1
CONTRIBUTIONS
36 Questions
4 Answers
ANSWER ACCEPTANCE
50.0%
VOTES RECEIVED
1
RANK
of 20,234
REPUTATION
N/A
AVERAGE RATING
0.00
CONTRIBUTIONS
0 Files
DOWNLOADS
0
ALL TIME DOWNLOADS
0
RANK
of 153,912
CONTRIBUTIONS
0 Problems
0 Solutions
SCORE
0
NUMBER OF BADGES
0
CONTRIBUTIONS
0 Posts
CONTRIBUTIONS
0 Public Channels
AVERAGE RATING
CONTRIBUTIONS
0 Highlights
AVERAGE NO. OF LIKES
Feeds
Question
In/out signal from vector
Imagine I have the following vector: 0 0 0 0 0 1 1 1 0 0 1 1 1 1 1 0 0 0 1 1 1 1 1 1 The si...
8 years ago | 1 answer | 0
1
answerQuestion
Pulling my hair out over this simple for loop! Please help!
I keep getting the "subscripted assignment dimension mismatch" error. My variables are: ia1=[79;91;94] ia2=[80;103;95] ...
8 years ago | 2 answers | 0
2
answersQuestion
Help with simple probability calculation (loop?)
I have a 2-column matrix that looks like this: 30 1 30 1 30 1 30 1 30 1 29 0 29 ...
9 years ago | 1 answer | 0
1
answerQuestion
Struct variables don't save
I have various matrices and I'd like them to be part of a struct. Each matrix is computed on its own, assigned to the struct, th...
9 years ago | 1 answer | 0
1
answerQuestion
For loop assignment problem
I have a struct with 85 fields. I want to copy data from the fields into a matrix called "one". Here is my code: one=nan(85...
9 years ago | 1 answer | 0
1
answerQuestion
Why is this plot deleted?
As soon as I get to set(gca) the plot disappears. If I continue I get the date formatted tick labels but I don't show any plot. ...
9 years ago | 1 answer | 0
1
answerQuestion
For loop combo troubles
I have the following code: When i switches to 2 how can I make j pickup where it last left off (non-nan)? For example, when i is...
9 years ago | 1 answer | 0
1
answerQuestion
How can I have a timer continue after an error?
Here is script A: t = timer; t.Period = 10; t.TasksToExecute = inf; t.ExecutionMode = 'fixedRate'; t.TimerFcn =...
9 years ago | 2 answers | 0
2
answersQuestion
Use timer to run script every ten seconds
I have a script that I want to execute automatically every ten seconds indefinitely until I tell it to stop. The script is calle...
9 years ago | 1 answer | 0
1
answerQuestion
Need consulting on datafeed toolbox/event handling
If there's anyone out there who knows how to operate this thing, please contact me for consulting. No one at Mathworks seems to ...
9 years ago | 0 answers | 0
0
answersQuestion
Countdown timer continuously running
I am trying to figure out the best approach to this so I appreciate your thoughts. I'm running a model that uses the number of m...
9 years ago | 1 answer | 0
1
answerQuestion
IQFeed - viewing multiple securities simultaneously?
Is this possible? If so IQFeed/Matlab have made it impossible to figure out.
9 years ago | 0 answers | 0
0
answersQuestion
Can Spreadsheet Link EX handle real-time data?
I have an RTD datafeed streaming into excel. I want to import this feed into Matlab. As the data from the RTD feed changes, will...
9 years ago | 0 answers | 0
0
answersQuestion
Fixing a for loop that's 90% correct
On the first pass through k, everything is fine. But when k=2, x=2, so my subscript index is starting with 2, not 1. If I change...
9 years ago | 0 answers | 0
0
answersQuestion
Overcoming 'index exceeds matrix dimensions' without changing methodology of code
This matrix below is a 25x7 matrix. Basically what I'm doing is taking a start date and an end date, and adding 1 to the start d...
9 years ago | 1 answer | 0
1
answerQuestion
Creating an efficient for loop
for i = 1:length(startIdx) for j = 1:length(date(startIdx(i):cutoffIdx(i))) k = date(startIdx(i):cutoffIdx(i...
9 years ago | 1 answer | 0
1
answerQuestion
Find elements in cell array (logical 0 or 1)
I have a cell column vector of stock symbols that are all three letters long. I need to create a column vector of the same lengt...
9 years ago | 1 answer | 0
1
answerQuestion
Union WITH repetitions - indices for both
How can this be achieved? I am trying to index trading days and calendar days so I can match the two together. Here is my code: ...
9 years ago | 1 answer | 0
1
answerQuestion
Focus plot and apply correct tick labels
Good Evening Everyone, I'd much rather be asking you about Bayesian analysis over this, but unfortunately, I am terrible with...
9 years ago | 1 answer | 0
1
answerQuestion
Trouble with calculating mean of historical data
I wrote a function that calculates the mean price of the last 15 mins of the trading day. In the attached excel file I get a mea...
9 years ago | 1 answer | 0
1
answerQuestion
Short function taking 20+ minutes to run
I'm using a Xeon quad-core processor with 64GB of RAM. The program running the function only has 89 data points. It's now been o...
9 years ago | 1 answer | 0
1
answerQuestion
How to encompass a half-hour block of time?
The code below finds the index of every timestamp at 3:30. timeStr=cellstr(datestr(time)); timeDbl=datevec(timeStr); ...
9 years ago | 1 answer | 0
1
answerQuestion
Find the Monday preceding the third Friday of the month
Ok, I have data spanning numerous years, and part of my analysis requires me to know the Monday that precedes the third Friday o...
9 years ago | 2 answers | 1
2
answersQuestion
Find index between two vectors
Good Afternoon, I have a matrix of datevecs. So it looks like this: 2015 1 1 14 59 0 2015 1 1 15 0 0 I need to fin...
9 years ago | 2 answers | 0
2
answersQuestion
Why won't this for loop move to the next variable?
On the first pass, everything is fine. i = 49, j = 1, k = 1112. On the second pass, i and j move to the next variables (50 and 1...
9 years ago | 2 answers | 0
2
answersQuestion
Nested for loop troubles
Hi Everyone, I am having difficulty troubleshooting a nested for loop. Things work fine on the first pass (when i=49) but bre...
9 years ago | 1 answer | 0
1
answerQuestion
Financial toolbox required for excel to matlab date conversion?
This blows my mind. I have to import dates from an excel spreadsheet and the only way I can convert them to usable dates is by b...
9 years ago | 2 answers | 0
2
answersQuestion
Find index in each column of a matrix using for
Good evening, I am attempting to find the index of the last non-NaN for each column in a matrix. I can't really get it to wor...
9 years ago | 1 answer | 0
1
answerQuestion
Find the index of the last numeric element of a column including NaNs
I have a column with many rows that has data in the middle surrounded by NaNs. For example, below is an abbreviated version of w...
9 years ago | 2 answers | 0