photo

Shane L


Last seen: 2 meses hace Con actividad desde 2016

Followers: 0   Following: 0

Estadística

All
  • 5-Star Galaxy Level 4
  • Personal Best Downloads Level 1
  • First Review
  • First Submission
  • Knowledgeable Level 2
  • First Answer
  • Solver

Ver insignias

Feeds

Ver por

Respondida
Storing a Square Wave in an array that is more than just one row
As you noted, your t and image arrays are 1 x W, whereas your temp array is W x H. When you try to index temp(:,x) = image; yo...

casi 5 años hace | 1

| aceptada

Respondida
How to add more than two elements of a cell, where each element in the cell is a matrix of identicle size?
Try this: sum(cat(3, M{:}), 3) This first concatenates all of the arrays in the cells of M into a three-dimensional numeric ar...

más de 5 años hace | 1

| aceptada

Respondida
Can I plot multiple polar histograms together?
The problem is that subplot creates axes, whereas polarhistogram requires polar axes (see polaraxes). I don't know of an equival...

más de 5 años hace | 0

| aceptada

Respondida
How do I get a "tabular" legend?
If you are looking for a code that is built to create a "tabular" legend, my <https://www.mathworks.com/matlabcentral/fileexchan...

más de 6 años hace | 1

Respondida
If I start with a matrix of zeros, how can I easily create a circle of ones in that matrix?
One way to do it (not necessarily the most efficient, but easy to understand): Z = zeros(99); % create square matrix of zer...

alrededor de 7 años hace | 3

Respondida
Spectrogram behaves unexpectedly when changing input values systematically
The 2nd argument (if it is a single integer), WINDOW, is not the number of time segments into which to split the data, but the l...

alrededor de 7 años hace | 2

| aceptada