photo

Tyler F


Last seen: más de 1 año hace Con actividad desde 2021

Followers: 0   Following: 0

Estadística

All
  • 3 Month Streak
  • Solver
  • First Answer

Ver insignias

Feeds

Ver por

Pregunta


Optimized Iterations and Permutations
I run a good number of simulations that so far I have been doing with deeply nested loops but I figure there has to be some more...

casi 2 años hace | 1 respuesta | 0

1

respuesta

Respondida
creating vector from n value
You can use the repmat function. n=2; N = repmat(1/n,1,n) >> [0.5 0.5]

más de 2 años hace | 0

Respondida
Finding Average Day for each hour from large dataset
Your first column is hours, you could use the reshape command to convert your data into a 24 x 365 matrix then do operations on ...

más de 2 años hace | 0

Respondida
storing values in for loop
You arent storing the value for each loop. Every time it loops the values for a and b overwrite. I cant run your code without yo...

más de 2 años hace | 0

Respondida
How to pass this signal in time to frequency?
Assuming t is a vector of time stamps, dt is your sampling time, to get a "proper" fft plot I would add this to the end of your ...

más de 2 años hace | 0

Respondida
I need to take a string ,and return the first recurring character.
Without helping you too much for a HW assignment, there are a few other commands you can use that may be included in your approv...

más de 2 años hace | 0