Shane L
Followers: 0 Following: 0
Statistics
RANK
1,975
of 295,569
REPUTATION
32
CONTRIBUTIONS
0 Questions
6 Answers
ANSWER ACCEPTANCE
0.00%
VOTES RECEIVED
8
RANK
6,375 of 20,247
REPUTATION
172
AVERAGE RATING
5.00
CONTRIBUTIONS
1 File
DOWNLOADS
4
ALL TIME DOWNLOADS
975
CONTRIBUTIONS
0 Posts
CONTRIBUTIONS
0 Public Channels
AVERAGE RATING
CONTRIBUTIONS
0 Highlights
AVERAGE NO. OF LIKES
Feeds
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...
5 years ago | 1
| accepted
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...
5 years ago | 1
| accepted
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...
6 years ago | 0
| accepted
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...
6 years ago | 1
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...
7 years ago | 3
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...
7 years ago | 2
| accepted