photo

Brad


Last seen: oltre 2 anni fa Attivo dal 2013

Followers: 0   Following: 0

Messaggio

I'm currently a doctoral student at UC San Diego, conducting research on the neural network properties of memory formation. Using a mixture of neurobiological and computational programming tools, I study and model memory and synaptic potentiation. Professional Interests: neural networks, synaptic potentiation, memory, learning, brownian motion, particle diffusion, particle tracking

Statistica

All
MATLAB Answers

3 Domande
2 Risposte

File Exchange

7 File

Cody

1 Problema
24 Soluzioni

RANK
11.743
of 300.369

REPUTAZIONE
4

CONTRIBUTI
3 Domande
2 Risposte

ACCETTAZIONE DELLE RISPOSTE
66.67%

VOTI RICEVUTI
2

RANK
5.906 of 20.936

REPUTAZIONE
203

VALUTAZIONE MEDIA
4.80

CONTRIBUTI
7 File

DOWNLOAD
9

ALL TIME DOWNLOAD
1845

RANK
18.322
of 168.436

CONTRIBUTI
1 Problema
24 Soluzioni

PUNTEGGIO
295

NUMERO DI BADGE
2

CONTRIBUTI
0 Post

CONTRIBUTI
0 Pubblico Canali

VALUTAZIONE MEDIA

CONTRIBUTI
0 Punti principali

NUMERO MEDIO DI LIKE

  • First Answer
  • Creator
  • Personal Best Downloads Level 1
  • First Review
  • 5-Star Galaxy Level 2
  • GitHub Submissions Level 3
  • First Submission
  • Thankful Level 1
  • Solver

Visualizza badge

Feeds

Visto da

Risposto
After updating R2020a update 3, a warning pop up
I had the same issue. I was able to fix the problem by entering a few simple commands (shown below). Note this process will rese...

oltre 5 anni fa | 0

Risolto


Calculate Amount of Cake Frosting
Given two input variables |r| and |h|, which stand for the radius and height of a cake, calculate the surface area of the cake y...

oltre 5 anni fa

Risolto


Create a matrix that counts up diagonally
Given a single input _N_, create a _N_ x _N_ matrix that counts from 1 : _N_ ², (along up-right diagonals, starting with 1 in th...

oltre 5 anni fa

Problema


Create a matrix that counts up diagonally
Given a single input _N_, create a _N_ x _N_ matrix that counts from 1 : _N_ ², (along up-right diagonals, starting with 1 in th...

oltre 5 anni fa | 2 | 20 risolutori

Risolto


Create times-tables
At one time or another, we all had to memorize boring times tables. 5 times 5 is 25. 5 times 6 is 30. 12 times 12 is way more th...

circa 6 anni fa

Risolto


Read a column of numbers and interpolate missing data
Given an input cell array of strings s, pick out the second column and turn it into a row vector of data. Missing data will be i...

circa 6 anni fa

Risolto


Pizza!
Given a circular pizza with radius _z_ and thickness _a_, return the pizza's volume. [ _z_ is first input argument.] Non-scor...

quasi 7 anni fa

Risolto


Find the numeric mean of the prime numbers in a matrix.
There will always be at least one prime in the matrix. Example: Input in = [ 8 3 5 9 ] Output out is 4...

circa 7 anni fa

Risolto


Finding Perfect Squares
Given a vector of numbers, return true if one of the numbers is a square of one of the other numbers. Otherwise return false. E...

circa 7 anni fa

Risolto


Fibonacci sequence
Calculate the nth Fibonacci number. Given n, return f where f = fib(n) and f(1) = 1, f(2) = 1, f(3) = 2, ... Examples: Inpu...

circa 7 anni fa

Risolto


Remove any row in which a NaN appears
Given the matrix A, return B in which all the rows that have one or more <http://www.mathworks.com/help/techdoc/ref/nan.html NaN...

oltre 7 anni fa

Inviato


macmem
view mac ram memory usage in console

oltre 8 anni fa | 1 download |

0.0 / 5
Thumbnail

Risposto
Minimal example where you run two loops simultaneously, and programmatically stop/switch a for-loop or while-loop or update the information inside those loops, while they are executing.
The problem is solved now using a timer method. If you're interested, I left notes in the <https://gist.github.com/subroutines/5...

circa 9 anni fa | 2

| accettato

Domanda


Minimal example where you run two loops simultaneously, and programmatically stop/switch a for-loop or while-loop or update the information inside those loops, while they are executing.
I have a question related to parallel computing, how to run two loops simultaneously, and how to programmatically stop a for loo...

circa 9 anni fa | 2 risposte | 0

2

risposte

Inviato


subroutines/PolyDraw
Draw polygons on a figure using a mouse and return the 2D coordinates

oltre 9 anni fa | 3 download |

5.0 / 5
Thumbnail

Inviato


subroutines/con
add a messenging console to a figure

circa 10 anni fa | 1 download |

0.0 / 5
Thumbnail

Inviato


subroutines/xmlmesh
xmlmesh is a Matlab function to format triangulated mesh data for xml file output.

circa 10 anni fa | 1 download |

4.5 / 5
Thumbnail

Inviato


subroutines/actograph
actograph is a matlab function for plotting circadian rhythm actograms

circa 10 anni fa | 1 download |

0.0 / 5
Thumbnail

Inviato


subroutines/NeuroFIT
Cell / Neuron Fluorescent Imaging Toolbox for Matlab

circa 10 anni fa | 1 download |

0.0 / 5
Thumbnail

Risolto


Is my wife right?
Regardless of input, output the string 'yes'.

oltre 10 anni fa

Risolto


Find the sum of all the numbers of the input vector
Find the sum of all the numbers of the input vector x. Examples: Input x = [1 2 3 5] Output y is 11 Input x ...

oltre 10 anni fa

Risolto


Elapsed Time
Given two date strings d1 and d2 of the form yyyy/mm/dd HH:MM:SS (assume hours HH is in 24 hour mode), determine how much time, ...

oltre 10 anni fa

Risolto


Replace NaNs with the number that appears to its left in the row.
Replace NaNs with the number that appears to its left in the row. If there are more than one consecutive NaNs, they should all ...

oltre 10 anni fa

Risolto


Determine whether a vector is monotonically increasing
Return true if the elements of the input vector increase monotonically (i.e. each element is larger than the previous). Return f...

oltre 10 anni fa

Risolto


Swap the first and last columns
Flip the outermost columns of matrix A, so that the first column becomes the last and the last column becomes the first. All oth...

oltre 10 anni fa

Risolto


Make a checkerboard matrix
Given an integer n, make an n-by-n matrix made up of alternating ones and zeros as shown below. The a(1,1) should be 1. Example...

oltre 10 anni fa

Risolto


Find all elements less than 0 or greater than 10 and replace them with NaN
Given an input vector x, find all elements of x less than 0 or greater than 10 and replace them with NaN. Example: Input ...

oltre 10 anni fa

Risolto


Triangle Numbers
Triangle numbers are the sums of successive integers. So 6 is a triangle number because 6 = 1 + 2 + 3 which can be displa...

oltre 10 anni fa

Risolto


Column Removal
Remove the nth column from input matrix A and return the resulting matrix in output B. So if A = [1 2 3; 4 5 6]; and ...

oltre 10 anni fa

Risolto


Select every other element of a vector
Write a function which returns every other element of the vector passed in. That is, it returns the all odd-numbered elements, s...

oltre 10 anni fa

Carica altro