![photo](/responsive_image/150/150/0/0/0/cache/matlabcentral/profiles/heljmailsustceducn_1522422131065_DEF.jpg)
Linjun He
Followers: 0 Following: 0
Statistiques
RANG
3 544
of 297 016
RÉPUTATION
16
CONTRIBUTIONS
7 Questions
3 Réponses
ACCEPTATION DE VOS RÉPONSES
85.71%
VOTES REÇUS
8
RANG
of 20 419
RÉPUTATION
N/A
CLASSEMENT MOYEN
0.00
CONTRIBUTIONS
0 Fichier
TÉLÉCHARGEMENTS
0
ALL TIME TÉLÉCHARGEMENTS
0
RANG
of 157 725
CONTRIBUTIONS
0 Problèmes
0 Solutions
SCORE
0
NOMBRE DE BADGES
0
CONTRIBUTIONS
0 Publications
CONTRIBUTIONS
0 Public Chaîne
CLASSEMENT MOYEN
CONTRIBUTIONS
0 Point fort
NOMBRE MOYEN DE LIKES
Feeds
turning legend off in xline function
You can simply use 'HandleVisibility' as follows: xline(-1,'--r','HandleVisibility','off'); For those line you want to show ...
presque 5 ans il y a | 8
Question
How do I design the structure and get the element according to its corresponding index?
I want to get the value of N and M after giving two index variable k and g, as shown in the figure. (k is a number and g is a...
environ 6 ans il y a | 1 réponse | 0
1
réponseQuestion
How do I draw a specific type of 3d mesh for a implicit function?
Here is the implicit function:(x1, x2, x3 are all in range [0,1]) p = 1; f = @(x1,x2,x3) x1.^p + x2.^p + x3.^p - 1; I want t...
environ 6 ans il y a | 1 réponse | 0
1
réponseHow do I get the maximum numbers of every "increasing pattern" in each row in a matrix?
A2=[A,ones(size(A,1),1)]-[ones(size(A,1),1),A]<=0 B=A2(:,2:end).*A Here is what I get. B = 0 0 3 0 0 ...
environ 6 ans il y a | 0
Question
How do I get the maximum numbers of every "increasing pattern" in each row in a matrix?
Here is a matrix A consisting of "increasing patterns". A=[1,2,3,1,2,3,4,1,2,1,2,3,4,1,1;1,2,1,1,2,3,1,2,3,4,1,2,3,4,5] In ea...
environ 6 ans il y a | 2 réponses | 0
2
réponsesHow do I convert a 2d matrix to a 3d matrix?
Similarly, I find this works: permute(reshape(C, 2, 3, 4), [1 3 2]) If you find answer from @Akira does not work in your cas...
environ 6 ans il y a | 0
Question
How do I convert a 2d matrix to a 3d matrix?
A(:,:,1) = ones(2,4); A(:,:,2) = 2*ones(2,4); A(:,:,3) = 3*ones(2,4); C = [ones(2,4);2*ones(2,4);3*ones(2,4)]; In this...
environ 6 ans il y a | 2 réponses | 0
2
réponsesQuestion
How do I keep consecutive number in a matrix?
For a matrix A, A = [1 1 0 0 1 1 0 0; 1 0 0 0 1 1 0 0; 0 1 0 0 1 1 0 0] I am trying to get B. How do I make it? B ...
environ 6 ans il y a | 1 réponse | 0
1
réponseQuestion
How to count the number of consecutive identical element of each row in a binary matrix?
Matrix A contains only binary numbers: A=[0,0,0,0,1,1,0,0;1,0,1,1,1,1,0,0;0,1,1,0,1,0,0,1] A = 0 0 0 0 1 1 0 0 1 0 1 1 1...
environ 6 ans il y a | 1 réponse | 0
1
réponseQuestion
How do I use information in mat file?
Here's the information in each .mat file.(metric, PF, Population) What I want to do is to use information in .mat file as inp...
environ 6 ans il y a | 1 réponse | 0