![photo](/responsive_image/150/150/0/0/0/cache/matlabcentral/profiles/heljmailsustceducn_1522422131065_DEF.jpg)
Linjun He
Followers: 0 Following: 0
Statistik
RANG
3.543
of 297.046
REPUTATION
16
ANTWORTZUSTIMMUNG
85.71%
ERHALTENE STIMMEN
8
RANG
of 20.422
REPUTATION
N/A
DURCHSCHNITTLICHE BEWERTUNG
0.00
BEITRÄGE
0 Dateien
DOWNLOADS
0
ALL TIME DOWNLOADS
0
RANG
of 157.776
BEITRÄGE
0 Probleme
0 Lösungen
PUNKTESTAND
0
ANZAHL DER ABZEICHEN
0
BEITRÄGE
0 Beiträge
BEITRÄGE
0 Öffentlich Kanäle
DURCHSCHNITTLICHE BEWERTUNG
BEITRÄGE
0 Highlights
DURCHSCHNITTLICHE ANZAHL DER 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 ...
fast 5 Jahre vor | 8
Frage
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...
etwa 6 Jahre vor | 1 Antwort | 0
1
AntwortFrage
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...
etwa 6 Jahre vor | 1 Antwort | 0
1
AntwortHow 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 ...
etwa 6 Jahre vor | 0
Frage
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...
etwa 6 Jahre vor | 2 Antworten | 0
2
AntwortenHow 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...
etwa 6 Jahre vor | 0
Frage
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...
etwa 6 Jahre vor | 2 Antworten | 0
2
AntwortenFrage
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 ...
etwa 6 Jahre vor | 1 Antwort | 0
1
AntwortFrage
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...
etwa 6 Jahre vor | 1 Antwort | 0
1
AntwortFrage
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...
etwa 6 Jahre vor | 1 Antwort | 0