Community Profile

photo

Linjun He


Last seen: circa un anno fa Attivo dal 2018

Statistiche

  • First Answer
  • Thankful Level 3

Visualizza badge

Content Feed

Visto da

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

circa 4 anni fa | 7

Domanda


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

circa 5 anni fa | 1 risposta | 0

1

risposta

Domanda


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

circa 5 anni fa | 1 risposta | 0

1

risposta

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

circa 5 anni fa | 0

Domanda


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

oltre 5 anni fa | 2 risposte | 0

2

risposte

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

oltre 5 anni fa | 0

Domanda


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

oltre 5 anni fa | 2 risposte | 0

2

risposte

Domanda


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

oltre 5 anni fa | 1 risposta | 0

1

risposta

Domanda


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

oltre 5 anni fa | 1 risposta | 0

1

risposta

Domanda


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

oltre 5 anni fa | 1 risposta | 0

1

risposta