photo

Franck Kamga


Last seen: circa un anno fa Attivo dal 2015

Followers: 0   Following: 0

Messaggio

Biomedical engineering student at Virginia Commonwealth University

Statistica

All
MATLAB Answers

1 Domanda
1 Risposta

Cody

0 Problemi
4 Soluzioni

RANK
20.835
of 300.392

REPUTAZIONE
2

CONTRIBUTI
1 Domanda
1 Risposta

ACCETTAZIONE DELLE RISPOSTE
0.0%

VOTI RICEVUTI
1

RANK
 of 20.934

REPUTAZIONE
N/A

VALUTAZIONE MEDIA
0.00

CONTRIBUTI
0 File

DOWNLOAD
0

ALL TIME DOWNLOAD
0

RANK
62.932
of 168.373

CONTRIBUTI
0 Problemi
4 Soluzioni

PUNTEGGIO
50

NUMERO DI BADGE
1

CONTRIBUTI
0 Post

CONTRIBUTI
0 Pubblico Canali

VALUTAZIONE MEDIA

CONTRIBUTI
0 Punti principali

NUMERO MEDIO DI LIKE

  • First Answer
  • Solver

Visualizza badge

Feeds

Visto da

Risposto
How to plot two lines on the same graph
plot(x,y,'b*') hold on plot(x,z,'b-') hold off Don't forget to put hold off in case you want to create a separate graph no...

oltre 10 anni fa | 1

Domanda


What is the simplest way to write header on each column of an array?
Here is the format that I know for an array with 2 column, and I would like to improve to a much simplest way. header = {x ...

oltre 10 anni fa | 1 risposta | 0

1

risposta

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

Risolto


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

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

oltre 10 anni fa