Community Profile

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
  • 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...

10年以上 前 | 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...

10年以上 前 | 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 ...

10年以上 前 | 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...

10年以上 前 | 3

| 採用済み

質問


uitable row name width - why is this SOO wide?!
I was just wondering if anybody could tell me why the row name width of a uitable is so obnoxiously wide? It appears to literall...

11年弱 前 | 1 件の回答 | 1

1

回答

回答済み
Clickable transparent lines are impossible?
Thanks Jan for the answer! I actually got it right before you posted your idea, for me, I knew the plot lines would never inters...

11年弱 前 | 0

質問


Clickable transparent lines are impossible?
So I have 3 lines (technically patches) that have some transparency enabled. These lines were generated by the patchline FEX sub...

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

2

回答

回答済み
How to pad ones at end of the image?
There is literally a function called padarray.. It does a pretty nice job. http://www.mathworks.com/help/images/ref/padarray.h...

11年弱 前 | 1

| 採用済み

回答済み
Why can't MATLAB resize an image nicely?
A robust way I figured out how to do it was resize the image to 10x (or whatever you want, benefits seem to cut off at 8-10 time...

11年弱 前 | 0

質問


Why can't MATLAB resize an image nicely?
So I have an image with some text on it that I want to display in MATLAB for whatever reason, sounds easy enough, but it turns o...

11年弱 前 | 4 件の回答 | 0

4

回答

質問


What's the Default Light from Figure Toolbar > Insert Light
When I plot something and create a surface object, and then I go to figure > Insert > Light, it adds like the best lighting ever...

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

1

回答

回答済み
how do I declare a variable matrix of any size?
If you could give us your exact code you are trying now, that would be really helpful. zeros(your matrix size) should work fine ...

約11年 前 | 0

回答済み
saving png with the correct format (legend)
Also, check out any screenshot mfiles, most will figure out the position of the figure if you give it the figure handle. They wi...

約11年 前 | 0

回答済み
Is it possible to change a double with exonents so no exp or decimal?
OK, I would absolutely leave it as a string until it is finished parsing! The 1.9861e+13 still represents all values by the ...

約11年 前 | 1

| 採用済み

回答済み
How do I take the derivative of my plot?
Call polyfit to generate your polynomial (if you don't already have a polynomial) Call polyder to get derivative of your fit...

約11年 前 | 2

質問


Switch Command Screen tabs at top through the command line
Let's say, I create a shortcut to change the directory and run some initialization files, is there any easy way to change the ta...

約11年 前 | 0 件の回答 | 0

0

回答

質問


Stretch quadrilateral ROI to pre-definded rectangle size
Lets say I have a quadrilateral ROI in my image roughly resembling a rectangle. I want to take this ROI and turn the correspondi...

約11年 前 | 1 件の回答 | 1

1

回答

回答済み
convert gray image back to rgb
Alternatively rgb=img(:,:,[1 1 1]); does the same thing as Jan's, but is a little shorter maybe and easier to remember. img ...

約11年 前 | 5

回答済み
how to plot 3d using coordinates
line([x1 x2],[y1 y2],[z1 z2]) and you can put as many points as you want in each vector obviously

約11年 前 | 1

回答済み
Change variable name on each iteration in for loop MATLAB
If you changed the name, you would be making a new variable every time and I am not sure it is even possible to do this like you...

約11年 前 | 0

| 採用済み

回答済み
Extraction of images from video: why images are missed?
Also, I would do obj.FrameRate to see if it really is 2, this seems much more likely than a number not showing up in a vector.

約11年 前 | 0

回答済み
How to create a database of images and thus, how to compare a query image to those that are there in the database?
And a cell array can't hurt either. If you are looking to see how close an image matches up, try taking a look at normxcorr2, it...

約11年 前 | 0

質問


rgb2ind equivalent for grayscale images - NOT gray2ind because its not the same, at all.
So I love that rgb2ind finds the best matching colors for the number of colors that you want and that you have the option of no ...

約11年 前 | 2 件の回答 | 0

2

回答

回答済み
Is there a good way to avoid junking up code with lots of preallocation lines?
You can assign the same value to multiple fields if you want, which I think would help in this case.

約11年 前 | 0

回答済み
creating a table in matlab
Without loops, there is no realllly simple way, that being said, there are a few shortucts, the code below should get you starte...

約11年 前 | 0

回答済み
Nested For Loops - Using a value from first loop within the second loop
What you are looking for is actually pretty easy to do, the key is to realize that the i from the for loop is actually a variabl...

約11年 前 | 0

回答済み
need help to make program recognize users inputs and associate values of a matrix to that users input
Hey Stephen, I did not look at your apparent other question, but to validate the year is very straightforward. I would do som...

約11年 前 | 0

質問


Has anybody else had the urge to use MATLAB as a verb?
For example: Man, I just can't stop MATLABing today, it's crazy! or I MATLABed for 7 hours today, my brain hurts now. ...

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

1

回答

回答済み
How are you supposed to write the code returned from "grabcode" to a file?!
The problem I was having is that all % signs, and well probably ! signs and other escape characters need to be changed for the f...

約11年 前 | 0

質問


How are you supposed to write the code returned from "grabcode" to a file?!
I have lots of published files I am trying to go through and get the code for. I was so happy when I saw that the "grabcode" fun...

約11年 前 | 2 件の回答 | 1

2

回答

さらに読み込む