photo

Kristofer Kusano


Virginia Tech

2012년부터 활동

Followers: 0   Following: 0

메시지

Professional Interests: automotive safety

통계

All
MATLAB Answers

2 질문
0 답변

File Exchange

4 파일

Cody

0 문제
10 답안

순위
100,713
of 301,204

평판
0

참여
2 질문
0 답변

답변 채택
50.0%

획득한 표
0

순위
5,469 of 21,191

평판
234

평균 평점
5.00

참여
4 파일

다운로드 수
6

ALL TIME 다운로드 수
2042

순위
39,878
of 173,368

참여
0 문제
10 답안

점수
110

배지 수
1

참여
0 게시물

참여
0 공개 채널

평균 평점

참여
0 하이라이트

평균 좋아요 수

  • Personal Best Downloads Level 1
  • First Review
  • 5-Star Galaxy Level 3
  • First Submission
  • Thankful Level 1
  • Solver

배지 보기

Feeds

보기 기준

제출됨


dlmread_empty
Modifies MATLAB's built-in dlmread function with support for changing empty cell value in the output

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

5.0 / 5

제출됨


csvreader
A robust comma separated value (CSV) parsing function for MATLAB

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

5.0 / 5
Thumbnail

제출됨


Read Tabular Data Package
Read in http://dataprotocols.org/ standard Tabular Data Package

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

0.0 / 5

질문


What exactly does 'gobjects' do?
I just noticed the new <http://www.mathworks.com/help/releases/R2013a/matlab/ref/gobjects.html |gobjects|> function starting in ...

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

1

답변

질문


Finding unique rows in a matrix and summing their weights faster
I am performing the following: % a matrix where rows are observations A = [1 2; 4 6; 1 2; ...

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

1

답변

문제를 풀었습니다


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

거의 13년 전

문제를 풀었습니다


Find the numeric mean of the prime numbers in a matrix.
There will always be at least one prime in the matrix. Example: Input in = [ 8 3 5 9 ] Output out is 4...

13년 초과 전

문제를 풀었습니다


Fibonacci sequence
Calculate the nth Fibonacci number. Given n, return f where f = fib(n) and f(1) = 1, f(2) = 1, f(3) = 2, ... Examples: Inpu...

13년 초과 전

문제를 풀었습니다


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

13년 초과 전

문제를 풀었습니다


Column Removal
Remove the nth column from input matrix A and return the resulting matrix in output B. So if A = [1 2 3; 4 5 6]; and ...

13년 초과 전

문제를 풀었습니다


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

13년 초과 전

문제를 풀었습니다


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

13년 초과 전

문제를 풀었습니다


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

13년 초과 전

문제를 풀었습니다


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

13년 초과 전

문제를 풀었습니다


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

13년 초과 전

제출됨


Add Percent ("%") Symbol to Axes Tick Labels
Add a percent ("%") symbol to the x, y, or both axes

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

0.0 / 5
Thumbnail