photo

Franck Kamga


Last seen: alrededor de 1 año hace Con actividad desde 2015

Followers: 0   Following: 0

Mensaje

Biomedical engineering student at Virginia Commonwealth University

Estadística

All
MATLAB Answers

1 Pregunta
1 Respuesta

Cody

0 Problemas
4 Soluciones

CLASIFICACIÓN
20.837
of 300.352

REPUTACIÓN
2

CONTRIBUCIONES
1 Pregunta
1 Respuesta

ACEPTACIÓN DE RESPUESTAS
0.0%

VOTOS RECIBIDOS
1

CLASIFICACIÓN
 of 20.928

REPUTACIÓN
N/A

EVALUACIÓN MEDIA
0.00

CONTRIBUCIONES
0 Archivos

DESCARGAS
0

ALL TIME DESCARGAS
0

CLASIFICACIÓN
62.884
of 168.212

CONTRIBUCIONES
0 Problemas
4 Soluciones

PUNTUACIÓN
50

NÚMERO DE INSIGNIAS
1

CONTRIBUCIONES
0 Publicaciones

CONTRIBUCIONES
0 Público Canales

EVALUACIÓN MEDIA

CONTRIBUCIONES
0 Temas destacados

MEDIA DE ME GUSTA

  • First Answer
  • Solver

Ver insignias

Feeds

Ver por

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

más de 10 años hace | 1

Pregunta


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

más de 10 años hace | 1 respuesta | 0

1

respuesta

Resuelto


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

más de 10 años hace

Resuelto


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

más de 10 años hace

Resuelto


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

más de 10 años hace

Resuelto


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

más de 10 años hace