photo

John Kitchin


Carnegie Mellon University

Actif depuis 2011

Followers: 0   Following: 0

Message

Statistiques

All
MATLAB Answers

0 Questions
2 Réponses

File Exchange

1 Fichier

Cody

0 Problèmes
11 Solutions

RANG
6 277
of 300 853

RÉPUTATION
8

CONTRIBUTIONS
0 Questions
2 Réponses

ACCEPTATION DE VOS RÉPONSES
0.00%

VOTES REÇUS
2

RANG
8 985 of 21 094

RÉPUTATION
86

CLASSEMENT MOYEN
0.00

CONTRIBUTIONS
1 Fichier

TÉLÉCHARGEMENTS
1

ALL TIME TÉLÉCHARGEMENTS
862

RANG
37 019
of 171 319

CONTRIBUTIONS
0 Problèmes
11 Solutions

SCORE
120

NOMBRE DE BADGES
1

CONTRIBUTIONS
0 Publications

CONTRIBUTIONS
0 Public Chaîne

CLASSEMENT MOYEN

CONTRIBUTIONS
0 Point fort

NOMBRE MOYEN DE LIKES

  • First Review
  • First Submission
  • Knowledgeable Level 1
  • First Answer
  • Solver

Afficher les badges

Feeds

Afficher par

A soumis


Units for Matlab
This package provides units conversion factors and enforces unit algebra for Matlab

plus de 13 ans il y a | 1 téléchargement |

0.0 / 5

A résolu


Determine whether a vector is monotonically increasing
Return true if the elements of the input vector increase monotonically (i.e. each element is larger than the previous). Return f...

presque 14 ans il y a

A résolu


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

presque 14 ans il y a

A résolu


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

presque 14 ans il y a

A résolu


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

presque 14 ans il y a

A résolu


Most nonzero elements in row
Given the matrix a, return the index r of the row with the most nonzero elements. Assume there will always be exactly one row th...

presque 14 ans il y a

A résolu


Determine if input is odd
Given the input n, return true if n is odd or false if n is even.

presque 14 ans il y a

A résolu


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

presque 14 ans il y a

A résolu


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

presque 14 ans il y a

A résolu


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

presque 14 ans il y a

A résolu


Add two numbers
Given a and b, return the sum a+b in c.

presque 14 ans il y a

A résolu


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

presque 14 ans il y a

Réponse apportée
XLSwrite function
You need to transpose e: xlswrite ('Cumulative_flow.xlsx',e',1,'D2:D17521') alternatively, create your d vector in the s...

environ 14 ans il y a | 0

| A accepté

Réponse apportée
Skip multiple iterations in for loop
This looks like it will do what you want: index=[0 0 0 1 0 0 0 0 0 0]; a=0; i = 1; while i < length(index) ...

environ 14 ans il y a | 2