photo

James


Texas A&M University

Con actividad desde 2011

Followers: 0   Following: 0

Mensaje

Estadística

All
MATLAB Answers

2 Preguntas
1 Respuesta

Cody

0 Problemas
11 Soluciones

CLASIFICACIÓN
41.496
of 302.083

REPUTACIÓN
1

CONTRIBUCIONES
2 Preguntas
1 Respuesta

ACEPTACIÓN DE RESPUESTAS
50.0%

VOTOS RECIBIDOS
0

CLASIFICACIÓN
 of 21.533

REPUTACIÓN
N/A

EVALUACIÓN MEDIA
0.00

CONTRIBUCIONES
0 Archivos

DESCARGAS
0

ALL TIME DESCARGAS
0

CLASIFICACIÓN
38.672
of 178.716

CONTRIBUCIONES
0 Problemas
11 Soluciones

PUNTUACIÓN
120

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 Review
  • Thankful Level 1
  • Solver

Ver insignias

Feeds

Ver por

Pregunta


Is the answer to the following question is still valid? (How Parallel Computing Toolbox works with MCR?)
http://www.mathworks.com/matlabcentral/answers/48562-how-parallel-computing-toolbox-works-with-mcr BTW, I paid and used ...

más de 11 años hace | 0 respuestas | 0

0

respuestas

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 13 años hace

Resuelto


Remove any row in which a NaN appears
Given the matrix A, return B in which all the rows that have one or more <http://www.mathworks.com/help/techdoc/ref/nan.html NaN...

más de 13 años hace

Resuelto


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

más de 13 años hace

Resuelto


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

más de 13 años hace

Resuelto


How to find the position of an element in a vector without using the find function
Write a function posX=findPosition(x,y) where x is a vector and y is the number that you are searching for. Examples: fin...

más de 13 años hace

Resuelto


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

más de 13 años hace

Resuelto


Sum all integers from 1 to 2^n
Given the number x, y must be the summation of all integers from 1 to 2^x. For instance if x=2 then y must be 1+2+3+4=10.

más de 13 años hace

Resuelto


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

más de 13 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 13 años hace

Resuelto


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

más de 13 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 13 años hace

Respondida
pseudo-random number generator rand() in .mex
Thanks. If I use the following mex function, seedit_mex, to set the seed each time before calling rand() in another mex functio...

más de 15 años hace | 0

Pregunta


pseudo-random number generator rand() in .mex
In standard C, the following code generate 5 random numbers. #include <stdio.h> #include <stdlib.h> int main (int argc, char ...

más de 15 años hace | 2 respuestas | 0

2

respuestas