photo

Cary


The Pelican Group

Con actividad desde 2014

Followers: 0   Following: 0

Mensaje

Estadística

MATLAB Answers

36 Preguntas
4 Respuestas

CLASIFICACIÓN
34.563
of 300.364

REPUTACIÓN
1

CONTRIBUCIONES
36 Preguntas
4 Respuestas

ACEPTACIÓN DE RESPUESTAS
50.0%

VOTOS RECIBIDOS
1

CLASIFICACIÓN
 of 20.934

REPUTACIÓN
N/A

EVALUACIÓN MEDIA
0.00

CONTRIBUCIONES
0 Archivos

DESCARGAS
0

ALL TIME DESCARGAS
0

CLASIFICACIÓN

of 168.407

CONTRIBUCIONES
0 Problemas
0 Soluciones

PUNTUACIÓN
0

NÚMERO DE INSIGNIAS
0

CONTRIBUCIONES
0 Publicaciones

CONTRIBUCIONES
0 Público Canales

EVALUACIÓN MEDIA

CONTRIBUCIONES
0 Temas destacados

MEDIA DE ME GUSTA

  • Thankful Level 3

Ver insignias

Feeds

Ver por

Pregunta


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

más de 9 años hace | 1 respuesta | 0

1

respuesta

Pregunta


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

más de 9 años hace | 2 respuestas | 0

2

respuestas

Pregunta


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

casi 10 años hace | 1 respuesta | 0

1

respuesta

Pregunta


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

casi 10 años hace | 1 respuesta | 0

1

respuesta

Pregunta


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

casi 10 años hace | 1 respuesta | 0

1

respuesta

Pregunta


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

alrededor de 10 años hace | 1 respuesta | 0

1

respuesta

Pregunta


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

alrededor de 10 años hace | 1 respuesta | 0

1

respuesta

Pregunta


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

alrededor de 10 años hace | 2 respuestas | 0

2

respuestas

Pregunta


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

alrededor de 10 años hace | 1 respuesta | 0

1

respuesta

Pregunta


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

alrededor de 10 años hace | 0 respuestas | 0

0

respuestas

Pregunta


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

alrededor de 10 años hace | 1 respuesta | 0

1

respuesta

Pregunta


IQFeed - viewing multiple securities simultaneously?
Is this possible? If so IQFeed/Matlab have made it impossible to figure out.

alrededor de 10 años hace | 0 respuestas | 0

0

respuestas

Pregunta


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

alrededor de 10 años hace | 0 respuestas | 0

0

respuestas

Pregunta


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

alrededor de 10 años hace | 0 respuestas | 0

0

respuestas

Pregunta


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

alrededor de 10 años hace | 1 respuesta | 0

1

respuesta

Pregunta


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

alrededor de 10 años hace | 1 respuesta | 0

1

respuesta

Pregunta


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

alrededor de 10 años hace | 1 respuesta | 0

1

respuesta

Pregunta


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

más de 10 años hace | 1 respuesta | 0

1

respuesta

Pregunta


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

más de 10 años hace | 1 respuesta | 0

1

respuesta

Pregunta


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

más de 10 años hace | 1 respuesta | 0

1

respuesta

Pregunta


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

más de 10 años hace | 1 respuesta | 0

1

respuesta

Pregunta


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

más de 10 años hace | 1 respuesta | 0

1

respuesta

Pregunta


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

más de 10 años hace | 2 respuestas | 1

2

respuestas

Respondida
Find index between two vectors
Thank you Azzi!

más de 10 años hace | 0

Pregunta


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

más de 10 años hace | 2 respuestas | 0

2

respuestas

Pregunta


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

más de 10 años hace | 2 respuestas | 0

2

respuestas

Pregunta


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

más de 10 años hace | 1 respuesta | 0

1

respuesta

Pregunta


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

más de 10 años hace | 2 respuestas | 0

2

respuestas

Pregunta


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

más de 10 años hace | 1 respuesta | 0

1

respuesta

Pregunta


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

más de 10 años hace | 2 respuestas | 0

2

respuestas

Cargar más