photo

coconutMocha


Princeton Psychology Department

Attivo dal 2015

Followers: 0   Following: 0

Messaggio

Statistica

All
MATLAB Answers

3 Domande
1 Risposta

Cody

0 Problemi
18 Soluzioni

RANK
194.186
of 300.364

REPUTAZIONE
0

CONTRIBUTI
3 Domande
1 Risposta

ACCETTAZIONE DELLE RISPOSTE
66.67%

VOTI RICEVUTI
0

RANK
 of 20.934

REPUTAZIONE
N/A

VALUTAZIONE MEDIA
0.00

CONTRIBUTI
0 File

DOWNLOAD
0

ALL TIME DOWNLOAD
0

RANK
25.881
of 168.407

CONTRIBUTI
0 Problemi
18 Soluzioni

PUNTEGGIO
200

NUMERO DI BADGE
2

CONTRIBUTI
0 Post

CONTRIBUTI
0 Pubblico Canali

VALUTAZIONE MEDIA

CONTRIBUTI
0 Punti principali

NUMERO MEDIO DI LIKE

  • Thankful Level 1
  • First Answer
  • Commenter
  • Solver

Visualizza badge

Feeds

Visto da

Risolto


Insert zeros into vector
Insert zeros after each elements in the vector. Number of zeros is specified as the input parameter. For example: x = [1 ...

quasi 9 anni fa

Risolto


Determine the number of odd integers in a vector
Determine the number of unique odd integers in a vector. Examples: Input x = [2 5 8 3 7 1]; Output y = 4; Inp...

quasi 9 anni fa

Risolto


Check if number exists in vector
Return 1 if number _a_ exists in vector _b_ otherwise return 0. a = 3; b = [1,2,4]; Returns 0. a = 3; b = [1,...

quasi 9 anni fa

Risolto


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

quasi 9 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 9 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 9 anni fa

Risolto


intersection of matrices
Given two matrices filled with ones and zeros, determine if they share a common row, column entry. These matrices are of identi...

quasi 9 anni fa

Domanda


what is the openexample equivalent for 2015b?
what is the equivalent for the 'openexample' function in MATLAB 2015b?

circa 9 anni fa | 1 risposta | 0

1

risposta

Domanda


control flow graph for mccabe complexity
I'd like to create a control flow graph given the output of the function which checks the cyclomatic complexity of a given MATLA...

oltre 9 anni fa | 0 risposte | 0

0

risposte

Risolto


The Hitchhiker's Guide to MATLAB
Output logical "true" if the input is the answer to life, the universe and everything. Otherwise, output logical "false".

oltre 9 anni fa

Domanda


surf plot is only showing grid (not surface)
I'm using the following code, but not getting a surface plot (rather, only the wiring underneath). Do you know why this might be...

oltre 9 anni fa | 1 risposta | 0

1

risposta

Risolto


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

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

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

oltre 9 anni fa

Risolto


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

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

oltre 9 anni fa

Risolto


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

oltre 9 anni fa

Risolto


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

oltre 9 anni fa

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

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

oltre 9 anni fa

Risposto
MATLAB R2014b Error on Startup
I was having a similar problem and I realized that the pathdef file was shadowed in my data/script storage folder as well as the...

oltre 10 anni fa | 0