Brandon Kuczenski - MATLAB Central

Brandon Kuczenski


University of California

Attivo dal 2001

Followers: 0   Following: 0

Messaggio

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

Statistica

All
CodyFile ExchangeMATLAB AnswersFrom 10/01 to 04/25Use left and right arrows to move selectionFrom 10/01Use left and right arrows to move left selectionTo 04/25Use left and right arrows to move right selectionUse TAB to select grip buttons or left and right arrows to change selection100%
MATLAB Answers

4 Domande
1 Risposta

File Exchange

8 File

Cody

2 Problemi
22 Soluzioni

RANK
12.506
of 298.313

REPUTAZIONE
3

CONTRIBUTI
4 Domande
1 Risposta

ACCETTAZIONE DELLE RISPOSTE
75.0%

VOTI RICEVUTI
3

RANK
115 of 20.563

REPUTAZIONE
9.898

VALUTAZIONE MEDIA
4.70

CONTRIBUTI
8 File

DOWNLOAD
38

ALL TIME DOWNLOAD
93443

RANK
13.964
of 160.817

CONTRIBUTI
2 Problemi
22 Soluzioni

PUNTEGGIO
370

NUMERO DI BADGE
6

CONTRIBUTI
0 Post

CONTRIBUTI
0 Pubblico Canali

VALUTAZIONE MEDIA

CONTRIBUTI
0 Punti principali

NUMERO MEDIO DI LIKE

  • 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

Visualizza badge

Feeds

Visto da

Inviato


tarjan(e)
Tarjan's strongly connected component algorithm

circa 9 anni fa | 2 download |

5.0 / 5
Thumbnail

Risolto


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

quasi 11 anni fa

Problema


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

quasi 11 anni fa | 7 | 1653 risolutori

Risolto


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

quasi 11 anni fa

Domanda


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

quasi 11 anni fa | 1 risposta | 0

1

risposta

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

circa 11 anni fa | 0

| accettato

Domanda


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

circa 11 anni fa | 1 risposta | 2

1

risposta

Inviato


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

oltre 11 anni fa | 1 download |

5.0 / 5

Inviato


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

oltre 11 anni fa | 4 download |

4.0 / 5

Problema


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

oltre 12 anni fa | 7 | 1892 risolutori

Risolto


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

oltre 12 anni fa

Risolto


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

oltre 12 anni fa

Risolto


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

oltre 12 anni fa

Risolto


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

oltre 12 anni fa

Risolto


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

oltre 12 anni fa

Risolto


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

oltre 12 anni fa

Risolto


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

oltre 12 anni fa

Risolto


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

quasi 13 anni fa

Risolto


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

quasi 13 anni fa

Risolto


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

quasi 13 anni fa

Risolto


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

quasi 13 anni fa

Risolto


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

quasi 13 anni fa

Risolto


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

quasi 13 anni fa

Risolto


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

quasi 13 anni fa

Risolto


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

quasi 13 anni fa

Risolto


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

quasi 13 anni fa

Risolto


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

quasi 13 anni fa

Risolto


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

quasi 13 anni fa

Risolto


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

quasi 13 anni fa

Risolto


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

quasi 13 anni fa

Carica altro