photo

Shaun VanWeelden


Iowa State University

2012 年からアクティブ

Followers: 0   Following: 0

Senior at Iowa State University studying Software Engineering. I love MATLAB and was a graphics engineering intern at the MathWorks. Right now, I am a MathWorks Student Ambassador at Iowa State. I have a lot of experience in image processing including working on several academic, government, and commercial applications. I am extremely creative, innovative, and enjoy working with MATLAB on a near daily basis.

Professional Interests: image processing, graphics, user interfaces

統計

All
MATLAB Answers

27 質問
27 回答

Cody

4 問題
79 解答

ランク
1,182
of 300,369

評判
63

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

回答採用率
66.67%

獲得投票数
23

ランク
 of 20,936

評判
N/A

平均評価
0.00

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

ダウンロード
0

ALL TIME ダウンロード
0

ランク
7,892
of 168,436

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

スコア
870

バッジ数
6

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

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

平均評価

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

平均いいねの数

  • First Review
  • 6 Month Streak
  • Thankful Level 3
  • Knowledgeable Level 2
  • First Answer
  • Quiz Master
  • Promoter
  • Creator
  • Commenter
  • Solver

バッジを表示

Feeds

表示方法

質問


Using "urlread" with codegen on hardware devices
I am trying to program my raspberry pi hardware device to get the weather from an API but since Simulink uses codegen, I am appa...

12年弱 前 | 0 件の回答 | 0

0

回答

回答済み
Duplicated elements in a GUI
Have them all point to the same callback and use the hObject variable to differentiate them. hObject is the current object being...

12年弱 前 | 0

質問


export_fig can't do Monospace?
I have been using export_fig (#1 file on File Exchange) to generate a nice pdf report, but I have ran into something that seems ...

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

1

回答

回答済み
how to open many matlab instances from matlab?
!matlab -r disp('hi') & Where instead of disp('hi') you would put what function you would like. Keep in mind what directory...

約12年 前 | 3

| 採用済み

解決済み


Bullseye Matrix
Given n (always odd), return output a that has concentric rings of the numbers 1 through (n+1)/2 around the center point. Exampl...

約12年 前

解決済み


Arrange vector in ascending order
Arrange a given vector in ascending order. input = [4 5 1 2 9]; output = [1 2 4 5 9];

約12年 前

解決済み


Rotate a Matrix
Input a Matrix x, Output y is the matrix rotating x 90 degrees clockwise

約12年 前

解決済み


Number of 1s in a binary string
Find the number of 1s in the given binary string. Example. If the input string is '1100101', the output is 4. If the input stri...

約12年 前

解決済み


Solve the Sudoku Row
*Description* A simple yet tedious task occurs near the end of most Sudoku-solving algorithms, computerized or manual. The ta...

約12年 前

問題


Better Index Number
Let's say you want to save many, many files and append these files with a certain sortable index number. As you probably know, y...

約12年 前 | 2 | 88 個のソルバー

解決済み


Better Index Number
Let's say you want to save many, many files and append these files with a certain sortable index number. As you probably know, y...

約12年 前

解決済み


Back to basics 17 - white space
Covering some basic topics I haven't seen elsewhere on Cody. Remove the trailing white spaces from the input variable

約12年 前

解決済み


Back to basics 7 - Equal NaNs
Covering some basic topics I haven't seen elsewhere on Cody. Given 2 input variables, output true if they are equal, false ot...

約12年 前

解決済み


What's the News?
Get the top headline from Google news! Presumably using urlread and regular expressions, get what the current headline at Google...

約12年 前

解決済み


Get top 5 Cody Player Emails Automatically
Yes, this is a little scary and also entirely possible to do in MATLAB, so let's do it! Looking at the list of the players <h...

約12年 前

問題


Get top 5 Cody Player Emails Automatically
Yes, this is a little scary and also entirely possible to do in MATLAB, so let's do it! Looking at the list of the players <h...

約12年 前 | 0 | 13 個のソルバー

解決済み


Convert this color - RGB Vector to Hex String
Given a 3 element RGB vector corresponding to a color (given by the MATLAB color spec <http://www.mathworks.com/help/matlab/ref/...

約12年 前

問題


Convert this color - RGB Vector to Hex String
Given a 3 element RGB vector corresponding to a color (given by the MATLAB color spec <http://www.mathworks.com/help/matlab/ref/...

約12年 前 | 2 | 136 個のソルバー

解決済み


ベクトルのスケーリング
入力したベクトルの大きさを1にしてください。

約12年 前

解決済み


Back to basics 14 - Keywords
Covering some basic topics I haven't seen elsewhere on Cody. Return a cell array of all MATLAB keywords

約12年 前

解決済み


Back to basics 9 - Indexed References
Covering some basic topics I haven't seen elsewhere on Cody. Given an input matrix and row and column, output the index of th...

約12年 前

解決済み


Back to basics 12 - Input Arguments
Covering some basic topics I haven't seen elsewhere on Cody. Return a value equal to the number of input arguments to the fun...

約12年 前

解決済み


Get the length of a given vector
Given a vector x, the output y should equal the length of x.

約12年 前

解決済み


Getting the indices from a vector
This is a basic MATLAB operation. It is for instructional purposes. --- You may already know how to <http://www.mathworks....

約12年 前

解決済み


Back to basics 6 - Column Vector
Covering some basic topics I haven't seen elsewhere on Cody. Given an input vector, output true or false whether it is a colu...

約12年 前

解決済み


Return the first and last character of a string
Return the first and last character of a string, concatenated together. If there is only one character in the string, the functi...

約12年 前

解決済み


Back to basics 11 - Max Integer
Covering some basic topics I haven't seen elsewhere on Cody. Return the largest positive integer MATLAB can handle.

約12年 前

問題


Returning a "greater than" vector
Given a vector, v, return a new vector , vNew, containing only values > n. For example: v=[1 2 3 4 5 6] n=3 vNew =...

約12年 前 | 1 | 264 個のソルバー

解決済み


Returning a "greater than" vector
Given a vector, v, return a new vector , vNew, containing only values > n. For example: v=[1 2 3 4 5 6] n=3 vNew =...

約12年 前

解決済み


surface of a spherical planet
you just discovered its circumference, that is the input.

約12年 前

さらに読み込む