photo

Shane L


Last seen: 2ヶ月 前 2016 年からアクティブ

Followers: 0   Following: 0

統計

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

バッジを表示

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年弱 前 | 1

| 採用済み

回答済み
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年以上 前 | 1

| 採用済み

回答済み
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...

5年以上 前 | 0

| 採用済み

回答済み
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年以上 前 | 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年 前 | 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年 前 | 2

| 採用済み