photo

Kevin Yeung


Last seen: 3 years ago Active since 2020

Followers: 0   Following: 0

Statistics

All
MATLAB Answers

2 Questions
1 Answer

Cody

0 Problems
9 Solutions

RANK
10,669
of 300,513

REPUTATION
4

CONTRIBUTIONS
2 Questions
1 Answer

ANSWER ACCEPTANCE
50.0%

VOTES RECEIVED
2

RANK
 of 21,018

REPUTATION
N/A

AVERAGE RATING
0.00

CONTRIBUTIONS
0 Files

DOWNLOADS
0

ALL TIME DOWNLOADS
0

RANK
33,578
of 169,480

CONTRIBUTIONS
0 Problems
9 Solutions

SCORE
140

NUMBER OF BADGES
1

CONTRIBUTIONS
0 Posts

CONTRIBUTIONS
0 Public Channels

AVERAGE RATING

CONTRIBUTIONS
0 Highlights

AVERAGE NO. OF LIKES

  • Solver

View badges

Feeds

View by

Question


How would I convert this .mat file to a .tif file?
I have a .mat file which describes a mask that I am using for PIV analysis. It contains two cells, which each contains submatric...

5 years ago | 1 answer | 0

1

answer

Answered
Why do I get an error with the fit function even though I'm following at MATLAB tutorial?
I figured it out! I simply forgot to install the Curve Fitting Toolbox. Thanks anyways!

5 years ago | 2

| accepted

Question


Why do I get an error with the fit function even though I'm following at MATLAB tutorial?
I am trying to learn how to use the fit function by using the following example code from MATLAB: x = (0:0.2:5)'; y = 2*exp(-0...

5 years ago | 2 answers | 0

2

answers

Solved


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

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

5 years ago

Solved


Triangle Numbers
Triangle numbers are the sums of successive integers. So 6 is a triangle number because 6 = 1 + 2 + 3 which can be displa...

5 years ago

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

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

5 years ago

Solved


Calculate a Damped Sinusoid
The equation of a damped sinusoid can be written as |y = A.ⅇ^(-λt)*cos(2πft)| where |A|, |λ|, and |f| ...

5 years ago

Solved


Solve a System of Linear Equations
*Example*: If a system of linear equations in _x&#8321_ and _x&#8322_ is: 2 _x₁_ + _x₂_ = 2 _x₁...

5 years ago

Solved


Find the Oldest Person in a Room
Given two input vectors: * |name| - user last names * |age| - corresponding age of the person Return the name of the ol...

5 years ago

Solved


Calculate Amount of Cake Frosting
Given two input variables |r| and |h|, which stand for the radius and height of a cake, calculate the surface area of the cake y...

5 years ago