photo

Clay Swackhamer


2017 年からアクティブ

Followers: 0   Following: 0

統計

All
MATLAB Answers

7 質問
19 回答

File Exchange

3 ファイル

ランク
946
of 299,737

評判
82

コントリビューション
7 質問
19 回答

回答採用率
85.71%

獲得投票数
23

ランク
10,454 of 20,791

評判
57

平均評価
0.00

コントリビューション
3 ファイル

ダウンロード
4

ALL TIME ダウンロード
10

ランク

of 165,604

コントリビューション
0 問題
0 解答

スコア
0

バッジ数
0

コントリビューション
0 投稿

コントリビューション
0 パブリック チャネル

平均評価

コントリビューション
0 ハイライト

平均いいねの数

  • Personal Best Downloads Level 1
  • Thankful Level 3
  • First Review
  • First Submission
  • Knowledgeable Level 2
  • First Answer

バッジを表示

Feeds

表示方法

送信済み


imageGrid
Puts a grid on an image

3ヶ月 前 | ダウンロード 1 件 |

0.0 / 5
Thumbnail

送信済み


image_trace
Code to trace an image

3ヶ月 前 | ダウンロード 2 件 |

0.0 / 5
Thumbnail

送信済み


getUCDavisColors
Returns official colors of UC Davis

3ヶ月 前 | ダウンロード 1 件 |

0.0 / 5
Thumbnail

回答済み
I want to calculate the exact surface area of an irregular 3d molecule/cluster using xyz coordinates. Is there a way?
This is a really interesting question. Here are my thoughts: We need the edge points. I'm assuming that what you have (the x,y,...

2年弱 前 | 0

回答済み
For loop that executes data from an excel file, your mission should you choose to accept it
Here is some code that reads a simple excel table (attached) and calculates a new variable based on the function "ECEF_function"...

2年弱 前 | 1

| 採用済み

回答済み
What should go in a next-generation MATLAB X?
My wish list: A real, beautiful dark theme Improving the appearance of figures. Reduce padding around subplots, set default ax...

2年弱 前 | 0

回答済み
how to use if else statement
Hope this helps. It uses an example built in dataset (carbig) to demonstrate some basics of working with data in tables. As with...

約2年 前 | 1

| 採用済み

回答済み
Create a column vector with elements counting down from 200 to 0 in increments of 5
Try transposing your output to flip it from a row vector (list of numbers going horizontally) to a column (list of numbers going...

約3年 前 | 0

回答済み
Plotting end points from different arrays
Hi AJ, I'm not entirely sure about your question, since you ask to "plot the end points of these variables (a, e, de, da) again...

3年以上 前 | 0

| 採用済み

回答済み
Help with table variables calculation
% Define the table T = table; T.rank = [1,3,2,4,2,5,1,3,2,4]'; T.rank = categorical(T.rank); % Create another column to st...

3年以上 前 | 1

| 採用済み

回答済み
How to plot this function with the interval of [-2,2]?
% Define x x = linspace(-2,2,1000); % Define function y = x + 1-2*sin(pi*x); % Estimate roots as values less than a tole...

3年以上 前 | 0

質問


Features that will help me detect this object?
I would like to detect an object in digital images (photos attached). It is a small nut. Sometimes I can successfully detect it...

約4年 前 | 1 件の回答 | 0

1

回答

質問


fitnlm either runs perfectly or crashes with nearly identical data
I am using fitnlm to do a simple curve fit. Most of the time it runs perfectly, but every now and then nearly identical data wil...

5年弱 前 | 1 件の回答 | 0

1

回答

回答済み
How to use nlinfit for a function with a nested infinite sum?
Hi Ishan and Chris, I attached an example. If you figured this out already I would be very grateful to see how you did it, sinc...

約5年 前 | 0

質問


Change yticks using a stacked plot
Hello, I am using the stackedplot function to display multiple series of data that share the same x axis. I would like to chang...

6年弱 前 | 2 件の回答 | 0

2

回答

回答済み
How can i shift plot?
p=[1/6 1/6 1/6 1/6 1/6 1/6]; q= conv(p,p); r=conv(q,p); rr=conv(r,p); rrr=conv(rr,p); rrrr=conv(rrr,p); subplot(2,2,1)...

6年以上 前 | 0

| 採用済み

回答済み
Write a MATLAB®
Hi Pamela, See https://www.mathworks.com/help/matlab/ref/plot.html and also https://www.mathworks.com/help/matlab/ref/fplot....

6年以上 前 | 0

回答済み
Simple moving average code for forecasting stock prices
Hi Megawaty, Check out https://www.mathworks.com/help/matlab/ref/movmean.html Here is an idea: time = 1:1:100' %100 trading...

6年以上 前 | 1

| 採用済み

回答済み
How to make an image straightener like that of cam scanner app?
Hi GMD, Check out https://www.mathworks.com/help/images/ref/imrotate.html Here is a bit of code where I implemented this type ...

6年以上 前 | 0

回答済み
fitting a parabola giving unreasonable answer
Two things: I changed your independent values (r) to something that is not so small. Second, I made your equation more simple. I...

6年以上 前 | 0

| 採用済み

回答済み
How to save animated plots
%% Make some data t = 1:0.1:2*pi y = sin(t) %% Initialize video myVideo = VideoWriter('myVideoFile'); %open video file my...

6年以上 前 | 18

| 採用済み

回答済み
How to plot a complex power spectrum using MATLAB?
This might have what you are looking for https://www.mathworks.com/help/matlab/ref/fft.html You could transform the data from...

6年以上 前 | 0

| 採用済み

回答済み
need help in matlab graph
SINR = rand(15,30) %15 x 30 matrix of random numbers Pt = linspace(-30, 30, 15) %create a vector from -30 to 30 with 15 entries...

6年以上 前 | 0

回答済み
problem with determining the area of an object in a binary image
You could try running the same code, except instead of using bwarea you could try summing all the pixels in the image. Since in ...

6年以上 前 | 0

回答済み
Where can I find the interactive signal processing tutorial?
This one is the official introduction to the toolbox https://www.mathworks.com/products/signal.html And here is an option from...

6年以上 前 | 0

質問


Simple compression of cylinder- results of finite element model don't make sense
I am trying to simulate the steady state compression of a cylinder using finite element analysis. The model that I have runs, bu...

6年以上 前 | 1 件の回答 | 0

1

回答

質問


Perimeter used by regionprops
Hi all, I am using the output of bwconncomp as an input to regionprops to calculate some values for blobs in a binary image. ...

8年弱 前 | 2 件の回答 | 1

2

回答

質問


Modify line style with insertShape
Hi all, I wrote a function to make a grid on an image. I can either draw the grid on top of the image or burn/insert it into ...

8年弱 前 | 1 件の回答 | 0

1

回答

質問


Vectorize loop for image manipulation
I have a black and white image (Ibw), and I want to take a circular region from it, and place it on a white background. I made...

8年以上 前 | 1 件の回答 | 0

1

回答