photo

Jie


Last seen: 10 mois il y a Actif depuis 2013

Followers: 0   Following: 0

Message

Statistiques

All
MATLAB Answers

0 Questions
9 Réponses

Cody

0 Problèmes
3 Solutions

RANG
12 096
of 300 756

RÉPUTATION
4

CONTRIBUTIONS
0 Questions
9 Réponses

ACCEPTATION DE VOS RÉPONSES
0.00%

VOTES REÇUS
0

RANG
 of 21 077

RÉPUTATION
N/A

CLASSEMENT MOYEN
0.00

CONTRIBUTIONS
0 Fichier

TÉLÉCHARGEMENTS
0

ALL TIME TÉLÉCHARGEMENTS
0

RANG
74 110
of 170 890

CONTRIBUTIONS
0 Problèmes
3 Solutions

SCORE
40

NOMBRE DE BADGES
1

CONTRIBUTIONS
0 Publications

CONTRIBUTIONS
0 Public Chaîne

CLASSEMENT MOYEN

CONTRIBUTIONS
0 Point fort

NOMBRE MOYEN DE LIKES

  • First Review
  • Knowledgeable Level 1
  • First Answer
  • Solver

Afficher les badges

Feeds

Afficher par

Réponse apportée
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...

environ 12 ans il y a | 0

Réponse apportée
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]; ...

environ 12 ans il y a | 0

Réponse apportée
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...

environ 12 ans il y a | 0

Réponse apportée
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. ...

environ 12 ans il y a | 0

Réponse apportée
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...

environ 12 ans il y a | 0

Réponse apportée
cross validation in neural network
try to 'global' targated variables

environ 12 ans il y a | 0

Réponse apportée
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...

environ 12 ans il y a | 0

| A accepté

Réponse apportée
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.

environ 12 ans il y a | 0

Réponse apportée
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' '...

environ 12 ans il y a | 0

A résolu


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

environ 12 ans il y a

A résolu


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

environ 12 ans il y a

A résolu


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

environ 12 ans il y a