Community Profile

photo

Wei-Ting Lin


University of Houston

Active since 2014

Professional Interests:
community ecology, theoretical ecology,data analysis

Statistics

All
  • Personal Best Downloads Level 1
  • First Review
  • First Submission
  • Scavenger Finisher
  • Solver

View badges

Content Feed

View by

Submitted


myplot_RAC: Rank-Abundance Curve
This function makes Rank-Abundance Curve plots for multiple communities.

7 years ago | 1 download |

Thumbnail

Submitted


myplot_loglog
Make a nice log-log plot, or semi-log plots quickly

7 years ago | 1 download |

Thumbnail

Solved


Pizza!
Given a circular pizza with radius _z_ and thickness _a_, return the pizza's volume. [ _z_ is first input argument.] Non-scor...

7 years ago

Submitted


mysubplot: subplots with major title
Make subplot and add major/big title to the figure

7 years ago | 1 download |

Thumbnail

Submitted


myplot_bar: bar graphs with error bar
Making bar graphs, with options to add on error bar (SE, NaN removed) and data points

7 years ago | 2 downloads |

Thumbnail

Submitted


mycolor(colorcode, selectplate)
Color selector: generates a 3-number vector code for a color. Can be used in plotting functions.

8 years ago | 2 downloads |

Thumbnail

Submitted


Visualization of correlation matrix: mycorrplot_1, mycorrplot_2
Plot the results of correlation (i.e. corr(X), corr(X,Y)) in a figure with table-like structure.

8 years ago | 2 downloads |

Thumbnail

Solved


Roll the Dice!
*Description* Return two random integers between 1 and 6, inclusive, to simulate rolling 2 dice. *Example* [x1,x2] =...

9 years ago

Submitted


myplot_CI: plot data and confidence interval
Making plot with multiple sets of data and confidence intervals.

9 years ago | 1 download |

Thumbnail

Solved


Make a checkerboard matrix
Given an integer n, make an n-by-n matrix made up of alternating ones and zeros as shown below. The a(1,1) should be 1. Example...

9 years ago

Solved


Times 2 - START HERE
Try out this test problem first. Given the variable x as your input, multiply it by two and put the result in y. Examples:...

9 years ago

Solved


Add two numbers
Given a and b, return the sum a+b in c.

9 years ago

Solved


Determine if input is odd
Given the input n, return true if n is odd or false if n is even.

9 years ago

Solved


Find the sum of all the numbers of the input vector
Find the sum of all the numbers of the input vector x. Examples: Input x = [1 2 3 5] Output y is 11 Input x ...

9 years ago

Solved


Select every other element of a vector
Write a function which returns every other element of the vector passed in. That is, it returns the all odd-numbered elements, s...

9 years ago

Solved


How to find the position of an element in a vector without using the find function
Write a function posX=findPosition(x,y) where x is a vector and y is the number that you are searching for. Examples: fin...

9 years ago

Solved


Weighted average
Given two lists of numbers, determine the weighted average. Example [1 2 3] and [10 15 20] should result in 33.333...

9 years ago

Solved


Make the vector [1 2 3 4 5 6 7 8 9 10]
In MATLAB, you create a vector by enclosing the elements in square brackets like so: x = [1 2 3 4] Commas are optional, s...

9 years ago