Brandon Kuczenski


University of California

Aktiv seit 2001

Followers: 0   Following: 0

Nachricht

Postdoctoral Researcher, Environmental Science and Management
Professional Interests: System Engineering, Technology Assessment, Industrial Ecology

Statistik

All
MATLAB Answers

4 Fragen
1 Antwort

File Exchange

8 Dateien

Cody

2 Probleme
22 Lösungen

RANG
12.506
of 300.779

REPUTATION
3

BEITRÄGE
4 Fragen
1 Antwort

ANTWORTZUSTIMMUNG
75.0%

ERHALTENE STIMMEN
3

RANG
117 of 21.084

REPUTATION
9.916

DURCHSCHNITTLICHE BEWERTUNG
4.70

BEITRÄGE
8 Dateien

DOWNLOADS
20

ALL TIME DOWNLOADS
93622

RANG
15.318
of 170.997

BEITRÄGE
2 Probleme
22 Lösungen

PUNKTESTAND
370

ANZAHL DER ABZEICHEN
6

BEITRÄGE
0 Beiträge

BEITRÄGE
0 Öffentlich Kanäle

DURCHSCHNITTLICHE BEWERTUNG

BEITRÄGE
0 Discussions

DURCHSCHNITTLICHE ANZAHL DER LIKES

  • Personal Best Downloads Level 4
  • Editor's Pick
  • First Review
  • 5-Star Galaxy Level 5
  • First Submission
  • Thankful Level 1
  • Quiz Master
  • Speed Demon
  • Creator
  • Promoter
  • Commenter
  • Solver

Abzeichen anzeigen

Feeds

Anzeigen nach

Gesendet


tarjan(e)
Tarjan's strongly connected component algorithm

mehr als 9 Jahre vor | 1 Download |

5.0 / 5
Thumbnail

Gelöst


Natural numbers in string form
Create a cell array of strings containing the first n natural numbers. _Slightly_ harder than it seems like it should be. Ex...

mehr als 11 Jahre vor

Problem


Natural numbers in string form
Create a cell array of strings containing the first n natural numbers. _Slightly_ harder than it seems like it should be. Ex...

mehr als 11 Jahre vor | 9 | 1836 Lösungsvorschläge

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

mehr als 11 Jahre vor

Frage


How do I add a value to a field in each element of a struct array?
Say I have a struct array with a numeric field: >> a=struct('bar',{47 52}) I want to increment that field across each el...

mehr als 11 Jahre vor | 1 Antwort | 0

1

Antwort

Beantwortet
@struct method not being found
I have been advised by Matlab support that this is expected behavior, because function_handle has higher precedence than struct-...

mehr als 11 Jahre vor | 0

| akzeptiert

Frage


@struct method not being found
I have written a number of extensions to the Matlab struct type, which I have stored in a directory called @struct. One of thes...

fast 12 Jahre vor | 1 Antwort | 2

1

Antwort

Gesendet


Capitalize strings using titlecase
Capitalize the first letter of each word in a string or cell array of strings

mehr als 12 Jahre vor | 1 Download |

5.0 / 5

Gesendet


Find nearest-matching string from a set
Computes shortest distance between a key string and a set of strings to find the nearest match.

mehr als 12 Jahre vor | 3 Downloads |

4.0 / 5

Problem


Split a string into chunks of specified length
Given a string and a vector of integers, break the string into chunks whose lengths are given by the elements of the vector. Ex...

etwa 13 Jahre vor | 8 | 2039 Lösungsvorschläge

Gelöst


Split a string into chunks of specified length
Given a string and a vector of integers, break the string into chunks whose lengths are given by the elements of the vector. Ex...

etwa 13 Jahre vor

Gelöst


Remove any row in which a NaN appears
Given the matrix A, return B in which all the rows that have one or more <http://www.mathworks.com/help/techdoc/ref/nan.html NaN...

mehr als 13 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...

mehr als 13 Jahre vor

Gelöst


Quote Doubler
Given a string s1, find all occurrences of the single quote character and replace them with two occurrences of the single quote ...

mehr als 13 Jahre vor

Gelöst


Summing digits
Given n, find the sum of the digits that make up 2^n. Example: Input n = 7 Output b = 11 since 2^7 = 128, and 1 + ...

mehr als 13 Jahre vor

Gelöst


Cell joiner
You are given a cell array of strings and a string delimiter. You need to produce one string which is composed of each string fr...

mehr als 13 Jahre vor

Gelöst


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

mehr als 13 Jahre vor

Gelöst


Create times-tables
At one time or another, we all had to memorize boring times tables. 5 times 5 is 25. 5 times 6 is 30. 12 times 12 is way more th...

mehr als 13 Jahre vor

Gelöst


Remove the vowels
Remove all the vowels in the given phrase. Example: Input s1 = 'Jack and Jill went up the hill' Output s2 is 'Jck nd Jll wn...

mehr als 13 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...

mehr als 13 Jahre vor

Gelöst


Is my wife right?
Regardless of input, output the string 'yes'.

mehr als 13 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...

mehr als 13 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...

mehr als 13 Jahre vor

Gelöst


Check if sorted
Check if sorted. Example: Input x = [1 2 0] Output y is 0

mehr als 13 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 ...

mehr als 13 Jahre vor

Gelöst


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

mehr als 13 Jahre vor

Gelö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 13 Jahre vor

Gelöst


Find all elements less than 0 or greater than 10 and replace them with NaN
Given an input vector x, find all elements of x less than 0 or greater than 10 and replace them with NaN. Example: Input ...

mehr als 13 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...

mehr als 13 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:...

mehr als 13 Jahre vor

Mehr laden