photo

Jie


Last seen: 8 meses hace Con actividad desde 2013

Followers: 0   Following: 0

Mensaje

Estadística

All
MATLAB Answers

0 Preguntas
9 Respuestas

Cody

0 Problemas
3 Soluciones

CLASIFICACIÓN
12.093
of 300.302

REPUTACIÓN
4

CONTRIBUCIONES
0 Preguntas
9 Respuestas

ACEPTACIÓN DE RESPUESTAS
0.00%

VOTOS RECIBIDOS
0

CLASIFICACIÓN
 of 20.911

REPUTACIÓN
N/A

EVALUACIÓN MEDIA
0.00

CONTRIBUCIONES
0 Archivos

DESCARGAS
0

ALL TIME DESCARGAS
0

CLASIFICACIÓN
72.627
of 168.040

CONTRIBUCIONES
0 Problemas
3 Soluciones

PUNTUACIÓN
40

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
  • Knowledgeable Level 1
  • First Answer
  • Solver

Ver insignias

Feeds

Ver por

Respondida
Plotting several values returned by a function.
You could have plotted the result in a loop (if you have used the function file correctly). But I suggest u not do this. In o...

casi 12 años hace | 0

Respondida
In the first part of the code, plot the approximation of π as a function of N, the number of terms in the series, for N between 1 and 15. The function to be used is (pi^2-8)/16=Summation(n=1:N)(1/((2n-1)^2*(2n+1)^2))
wish this could help. % the formula could be rewrote as pi=sqrt(sum(16/((2*n-1)^2*(2*n+1)^2)+8) N=[1:15, 20, 30]; ...

casi 12 años hace | 0

Respondida
Importing arbitrary assymetric matrix
try textscan() or strread() but as Walter posted, "The more the lengths are fixed and the formats are fixed, the ea...

alrededor de 12 años hace | 0

Respondida
Suppose I have a matrix A(590x133). How should I find slope of each row of the matrix A
You could use that function (or many other funs) to get your slope,but u probably could not get all the slopes at one instance. ...

alrededor de 12 años hace | 0

Respondida
Matrix creation with specific logic
If i did not take the def wrong, I'm afraid ur definition just gives (at most) the value of 90 different position in a matrix(fo...

alrededor de 12 años hace | 0

Respondida
cross validation in neural network
try to 'global' targated variables

alrededor de 12 años hace | 0

Respondida
How can I solve simultaneous PDEs using pdepe?
I'm afraid matlab may not be able to solve coupled(interlinked) PDEs with its own pdepe function. I used that one before. Howev...

alrededor de 12 años hace | 0

| aceptada

Respondida
How can I make a function plot based on the values listed below?
just plot(X,Y) if ur workspace already have these 2 variables.

alrededor de 12 años hace | 0

Respondida
how to make zero padding?
function out_put =adpadding(in_put) % just wish you matrix size is not too large [n m]=size(in_put); A=['a' 'b' '...

alrededor de 12 años hace | 0

Resuelto


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

alrededor de 12 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:...

alrededor de 12 años hace

Resuelto


Returning a "greater than" vector
Given a vector, v, return a new vector , vNew, containing only values > n. For example: v=[1 2 3 4 5 6] n=3 vNew =...

alrededor de 12 años hace