photo

Daniel Armyr

MathWorks

Attivo dal 2008

Followers: 0   Following: 0

Messaggio

Statistica

All
MATLAB Answers

1 Domanda
9 Risposte

File Exchange

10 File

Cody

1 Problema
26 Soluzioni

RANK
4.173
of 300.364

REPUTAZIONE
12

CONTRIBUTI
1 Domanda
9 Risposte

ACCETTAZIONE DELLE RISPOSTE
100.0%

VOTI RICEVUTI
5

RANK
412 of 20.934

REPUTAZIONE
4.011

VALUTAZIONE MEDIA
4.70

CONTRIBUTI
10 File

DOWNLOAD
23

ALL TIME DOWNLOAD
37649

RANK
16.700
of 168.407

CONTRIBUTI
1 Problema
26 Soluzioni

PUNTEGGIO
320

NUMERO DI BADGE
3

CONTRIBUTI
0 Post

CONTRIBUTI
0 Pubblico Canali

VALUTAZIONE MEDIA

CONTRIBUTI
0 Punti principali

NUMERO MEDIO DI LIKE

  • Personal Best Downloads Level 2
  • Editor's Pick
  • First Review
  • 5-Star Galaxy Level 5
  • First Submission
  • Thankful Level 1
  • Revival Level 2
  • Knowledgeable Level 1
  • First Answer
  • Commenter
  • ASEE Challenge Master
  • Solver

Visualizza badge

Feeds

Visto da

Inviato


Interactive Incompressible Fluids
A GPU-enabled interactive demo of Navier-Stokes equations for incompressible fluids.

circa 9 anni fa | 5 download |

5.0 / 5
Thumbnail

Inviato


2D Wave Equation
Interactive demo of the 2d wave equation.

circa 9 anni fa | 4 download |

5.0 / 5
Thumbnail

Inviato


MATLAB for CUDA Programmers
This is the code used during the MATLAB for CUDA Programmers webinar

circa 9 anni fa | 4 download |

4.0 / 5
Thumbnail

Inviato


Polar 2
An update to Matlabs built-in polar.m

circa 9 anni fa | 1 download |

4.5 / 5

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 10 anni fa

Risolto


Function writing test
Tests your ability to write a trivial function.

quasi 11 anni fa

Problema


bla
bla

quasi 11 anni fa | 0 | 0 risolutori

Risolto


Solitaire Cipher
Implement the <http://en.wikipedia.org/wiki/Solitaire_(cipher) solitaire cipher>. Since this is from Wikipedia, I am capturin...

circa 11 anni fa

Risolto


Find a subset that divides the vector into equal halves
Given a vector x, return the indices to elements that will sum to exactly half of the sum of all elements. Example: Inpu...

circa 11 anni fa

Risolto


How long is the longest prime diagonal?
Stanislaw Ulam once observed that if the counting numbers are <http://en.wikipedia.org/wiki/Ulam_spiral arranged in a spiral>, t...

circa 11 anni fa

Risolto


Find the biggest empty box
You are given a matrix that contains only ones and zeros. Think of the ones as columns in an otherwise empty floor plan. You wan...

circa 11 anni fa

Risolto


Spot the outlier
All points except for one lie on a line. Which one is the outlier? Example: You are given a list of x-y pairs in a column ...

circa 11 anni fa

Risolto


Make a run-length companion vector
Given a vector x, return a vector r that indicates the run length of any value in x. Each element in r shows how many times the ...

circa 11 anni fa

Risolto


How many trades represent all the profit?
Given a list of results from trades made: [1 3 -4 2 -1 2 3] We can add them up to see this series of trades made a profit ...

circa 11 anni fa

Risolto


Flag largest magnitude swings as they occur
You have a phenomenon that produces strictly positive or negative results. delta = [1 -3 4 2 -1 6 -2 -7]; Marching thr...

circa 11 anni fa

Risolto


Given a window, how many subsets of a vector sum positive
Given a vector: [1 0 -1 3 2 -3 1] and a window of 2, A sliding window would find: 1 + 0 = 1 0 - 1 = -1 ...

circa 11 anni fa

Risolto


Implement simple rotation cypher
If given a letter from the set: [abc...xyz] and a shift, implement a shift cypher. Example: 'abc' with a shi...

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

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

circa 11 anni fa

Inviato


cloudPlot
A function to plot the distribution of 2-dimensional data.

circa 12 anni fa | 2 download |

4.9375 / 5

Risolto


Find the largest value in the 3D matrix
Given a 3D matrix, A, find the largest value. E.g. >> A = 1:9; >> A=reshape(A,[3 1 3]); >> islargest(A) ans = 9

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

oltre 13 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 13 anni fa

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 13 anni fa

Risolto


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

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

oltre 13 anni fa

Risolto


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

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

oltre 13 anni fa

Risolto


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

oltre 13 anni fa

Carica altro