photo

Chris Wilkening


Last seen: Today 2014년부터 활동

Followers: 0   Following: 0

메시지

Programming Languages:
C++, C, MATLAB
Spoken Languages:
English
Pronouns:
He/him

통계

All
MATLAB Answers

3 질문
2 답변

File Exchange

8 파일

Cody

0 문제
367 답안

순위
196,678
of 301,653

평판
0

참여
3 질문
2 답변

답변 채택
33.33%

획득한 표
0

순위
4,629 of 21,377

평판
306

평균 평점
5.00

참여
8 파일

다운로드 수
135

ALL TIME 다운로드 수
2079

순위
311
of 175,992

참여
0 문제
367 답안

점수
5,289

배지 수
31

참여
0 게시물

참여
0 공개 채널

평균 평점

참여
0 하이라이트

평균 좋아요 수

  • Thankful Level 1
  • First Answer
  • Sequences And Series I Master
  • Tiles Challenge Master
  • Personal Best Downloads Level 3
  • 5-Star Galaxy Level 1
  • GitHub Submissions Level 1
  • Explorer
  • ASEE Challenge Master
  • Strings I Master
  • Draw Letters
  • Matrix Manipulation I Master

배지 보기

Feeds

보기 기준

제출됨


Test Sorting Functions
Calculate, quantify and visualize run times of sorting algorithms with various inputs. New and custom algorithms can be added a...

2일 전 | 다운로드 수: 5 |

0.0 / 5
Thumbnail

제출됨


Digitizer
Digitize chart data from an image.

6개월 전 | 다운로드 수: 117 |

5.0 / 5
Thumbnail

제출됨


Unit converter package
Includes common STEM unit conversions. Easily expandable by user - define one new unit pair to get conversions with all other ...

9개월 전 | 다운로드 수: 1 |

0.0 / 5

제출됨


Time History Plotter of csv data
Load csv format data and plot it. Plotting setup can be saved & reused, very easy to make nicely formatted plots.

10개월 전 | 다운로드 수: 2 |

0.0 / 5
Thumbnail

제출됨


Fermi Paradox simulation
Simulation allows the investigation of various parameters within the Fermi paradox.

대략 1년 전 | 다운로드 수: 4 |

0.0 / 5
Thumbnail

질문


Accidental deletion of project, how to contact file exchange admin
I accidentally deleted a file exchange project, when I try to reupload I am told this is not possible and to contact an admin. ...

1년 초과 전 | 답변 수: 1 | 0

1

답변

제출됨


Data Table Lookup class, interpn() data container
Data Table Lookup class gives the user a way to store, manage, manipulate and plot data as would be used with MatLab interpn() l...

1년 초과 전 | 다운로드 수: 2 |

0.0 / 5
Thumbnail

제출됨


Visual Data Editor
Edit table data via mouse clicks.

거의 2년 전 | 다운로드 수: 2 |

0.0 / 5
Thumbnail

답변 있음
How to specify same positive and negative axes-limits without knowing the limit values beforehand?
Seems like this should be an option but below works x = -4:.01:14.1; y = cos(x); figure(1) plot(x,y) xlim([-max(abs(xlim)...

대략 2년 전 | 0

문제를 풀었습니다


What is the distance from point P(x,y) to the line Ax + By + C = 0?
Given a point, P(x,y), find the distance from this point to a linear line. INPUTS: x, y, A, B, C OUTPUTS: d, the distance ...

2년 초과 전

문제를 풀었습니다


Is the Point in a Circle?
Check whether a point or multiple points is/are in a circle centered at point (x0, y0) with radius r. Points = [x, y]; c...

2년 초과 전

문제를 풀었습니다


Angle between Two Vectors
The dot product relationship, a dot b = | a | | b | cos(theta), can be used to determine the acute angle between vector a and ve...

2년 초과 전

문제를 풀었습니다


Spherical radius given four points
Determine the radius of a sphere provided four non-coplanar points on the surface of the sphere. pts = [x1 y1 z1; x...

2년 초과 전

문제를 풀었습니다


Volume of a Parallelepiped
Calculate the volume of a Parallelepiped given the vectors for three edges that meet at one vertex. A cube is a special case ...

2년 초과 전

문제를 풀었습니다


Are all the three given point in the same line?
In this problem the input is the coordinate of the three points in a XY plane? P1(X1,Y1) P2(X2,Y2) P3(X3,Y3) how can...

2년 초과 전

문제를 풀었습니다


Find third Side of a right triangle given hypotenuse and a side. No * - or other functions allowed
Find the remaining side of a triangle given the hypotenuse and a side. However, the normal functions and symbols are not allowe...

2년 초과 전

문제를 풀었습니다


Television Screen Dimensions
Given a width to height ratio of a TV screen given as _w_ and _h_ as well as the diagonal length of the television _l_, return t...

2년 초과 전

문제를 풀었습니다


Alternating sum
Given vector x, calculate the alternating sum y = x(1) - x(2) + x(3) - x(4) + ...

2년 초과 전

문제를 풀었습니다


Golomb's self-describing sequence (based on Euler 341)
The Golomb's self-describing sequence {G(n)} is the only nondecreasing sequence of natural numbers such that n appears exactly G...

2년 초과 전

문제를 풀었습니다


Square Digits Number Chain Terminal Value (Inspired by Project Euler Problem 92)
Given a number _n_, return the terminal value of the number chain formed by summing the square of the digits. According to the P...

2년 초과 전

문제를 풀었습니다


"Look and say" sequence
What's the next number in this sequence? * [0] * [1 0] * [1 1 1 0] * [3 1 1 0] * [1 3 2 1 1 0] This a variant on the w...

2년 초과 전

문제를 풀었습니다


Sum the Infinite Series
Given that 0 < x and x < 2*pi where x is in radians, write a function [c,s] = infinite_series(x); that returns with the...

2년 초과 전

문제를 풀었습니다


Find the stride of the longest skip sequence
We define a _skip sequence_ as a regularly-spaced list of integers such as might be generated by MATLAB's <http://www.mathworks....

2년 초과 전

문제를 풀었습니다


Sum of first n terms of a harmonic progression
Given inputs a, d and n, return the sum of the first n terms of the harmonic progression a, a/(1+d), a/(1+2d), a/(1+3d),....

2년 초과 전

문제를 풀었습니다


Integer sequence - 2 : Kolakoski sequence
Get the n-th term of Kolakoski Sequence.

2년 초과 전

문제를 풀었습니다


Largest Geometric Series
Extension of Ned Gulley's wonderful Problem 317. In a geometric series, ratio of adjacent elements is always a constant value. ...

2년 초과 전

문제를 풀었습니다


Find Logic 18

2년 초과 전

문제를 풀었습니다


Find Logic 19

2년 초과 전

문제를 풀었습니다


Energy Conversion 2

2년 초과 전

문제를 풀었습니다


Energy Conversion 1

2년 초과 전

더 보기