Kristofer Kusano
Virginia Tech
Followers: 0 Following: 0
Professional Interests: automotive safety
Statistik
RANG
148.600
of 295.673
REPUTATION
0
BEITRÄGE
2 Fragen
0 Antworten
ANTWORTZUSTIMMUNG
50.0%
ERHALTENE STIMMEN
0
RANG
5.357 of 20.262
REPUTATION
233
DURCHSCHNITTLICHE BEWERTUNG
5.00
BEITRÄGE
4 Dateien
DOWNLOADS
9
ALL TIME DOWNLOADS
2032
BEITRÄGE
0 Beiträge
BEITRÄGE
0 Öffentlich Kanäle
DURCHSCHNITTLICHE BEWERTUNG
BEITRÄGE
0 Highlights
DURCHSCHNITTLICHE ANZAHL DER LIKES
Feeds
Gesendet
dlmread_empty
Modifies MATLAB's built-in dlmread function with support for changing empty cell value in the output
mehr als 8 Jahre vor | 2 Downloads |
Gesendet
csvreader
A robust comma separated value (CSV) parsing function for MATLAB
mehr als 8 Jahre vor | 2 Downloads |
Gesendet
Read Tabular Data Package
Read in http://dataprotocols.org/ standard Tabular Data Package
mehr als 10 Jahre vor | 1 Download |
Frage
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 ...
etwa 11 Jahre vor | 1 Antwort | 0
1
AntwortFrage
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; ...
mehr als 11 Jahre vor | 1 Antwort | 0
1
AntwortGelöst
Weighted average
Given two lists of numbers, determine the weighted average. Example [1 2 3] and [10 15 20] should result in 33.333...
mehr als 11 Jahre vor
Gelöst
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...
etwa 12 Jahre vor
Gelöst
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...
etwa 12 Jahre vor
Gelöst
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...
etwa 12 Jahre vor
Gelöst
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 ...
etwa 12 Jahre vor
Gelöst
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...
etwa 12 Jahre vor
Gelöst
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...
etwa 12 Jahre vor
Gelöst
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 ...
etwa 12 Jahre vor
Gelöst
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...
etwa 12 Jahre vor
Gelöst
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:...
etwa 12 Jahre vor
Gesendet
Add Percent ("%") Symbol to Axes Tick Labels
Add a percent ("%") symbol to the x, y, or both axes
etwa 12 Jahre vor | 4 Downloads |