Community Profile

photo

Rub Ron


Last seen: 5 months 前 自 2019 起处于活动状态

统计数据

  • First Review
  • Knowledgeable Level 2
  • First Answer
  • Thankful Level 3

查看徽章

Content Feed

排序方式:

提问


Inverse input/output of switch case function
Say I have the following function: function [y] = my_func(x) switch x case 'name a' y = 'word i'; ...

10 months 前 | 3 个回答 | 0

3

个回答

已回答
How do I use Latex formatting in graph node labels?
I have faced the same issue. This is a work around: % you may need this before executing the code set(groot,'DefaultTextInterp...

1 year 前 | 0

提问


plot legend that depicts different markes of nodes
I want to have a legend that label the markers present in my graph plot. G = graph([1 1], [2 3]); plot(G,'marker',[{'o'},{'x'}...

1 year 前 | 1 个回答 | 0

1

个回答

提问


parallelplot and latex interpreter
I am using parallelplot to generate some plots. However, when I used: set(gca,'TickLabelInterpreter','latex'); I get: Unreco...

1 year 前 | 1 个回答 | 0

1

个回答

提问


Find returns empty with inconsistent size
I have a variable x, that is a vector with a variable number of elements. When applying the function find(x>0), for: find([-1...

2 years 前 | 2 个回答 | 0

2

个回答

提问


Plot connected vertical points with different marks
I have a vector x=[ 1 2 3 4], and a matrix of size: 3x4. I want to plot something like this: Update: the number of vertical ...

2 years 前 | 2 个回答 | 0

2

个回答

提问


set order of elseif
Updated. I have this code structure inside a loop. x, y and z are 1/0 variables. In this case the order of the elseif stateme...

3 years 前 | 3 个回答 | 0

3

个回答

提问


One/zero Matrix, merge subset of columns
Say I have this matrix of ones and zeros, 10x6: x= [ 0 0 0 1 0 0 0 1 1 1 1 1 0 1 1 0 1 1 0 0 0 0 ...

3 years 前 | 2 个回答 | 1

2

个回答

提问


Boxplot inside a bar graph.
Say I have a bar graph with two groups, and 4 bars in each group: bar(rand(2,4)) I would ike to plot a boxplot (or else a bunc...

3 years 前 | 1 个回答 | 0

1

个回答

已回答
How to make a certain percentage of values in an existing matrix, between a set range of values. Probably easy but I am a newbie.
What about this: size=[25,10]; Score=randi([50,100],size); my_percentage = 10; my_piece = prod(size)...

3 years 前 | 0

| 已接受

已回答
alternative to groupcounts function
I found this way. I hope someone can provide nicer way. Original: [xx,yy] = groupcounts(temp); Alternative: [xx0,yy] = find...

3 years 前 | 0

| 已接受

提问


alternative to groupcounts function
I have made a script which I used groupcounts() function. The pc where the script is running is previous to 2019. So that fun...

3 years 前 | 2 个回答 | 0

2

个回答

提问


string cell array inside a graph
Say I have this: C = {'a';'b';'c';'d';'e'}; s = [1 1 2 3 1]; t = [2 2 3 4 4]; G = graph(s,t); G.Edges.Label = C; With...

3 years 前 | 1 个回答 | 0

1

个回答

提问


sscanf with cell array of strings
Say I have a cell array: C = {'2_5_7';'10_2_6';'4_3_7';'3_10_11';'3_16_11'}; To extract one row as a vector of number I was us...

3 years 前 | 2 个回答 | 0

2

个回答

提问


unique vector with restrictions
Say I have these vector: head_1=[1 6]; body_1=[1 4 5 6 8 9 15]; head_2=[7 9 13]; body_2=[5 7 8 9 13 20 30]; head_3=[20 ...

3 years 前 | 1 个回答 | 0

1

个回答

提问


Making own android apps with Matlab pros and cons
I just learnt that is possible to make apps for android mobiles writing the “core” code in Matlab. I would like to know what sor...

3 years 前 | 1 个回答 | 0

1

个回答

已回答
How to turn a 1x32 array into a 1x1 array?
Perhpas this? Say v is your 188583x32 matrix: v = magic(5); v_final = join(sprintfc('%d',v),'');

3 years 前 | 1

| 已接受

已回答
How can I set x-variable cutoffs using a script to include or exclude points
x = [40 ; 42; 43 ; 50; 52; 60; 70; 71 ; 73; 80]; y = [12 ; 3; 5 ; 20; 21; 26; 3; 10; 1; 15]; xy = [x y]; v = [0; diff(x)<3]';...

3 years 前 | 0

已回答
What frustrates you about MATLAB? #2
That the edges of a grah cannot be sorted.

3 years 前 | 0

已回答
Create new column in Table based on conditions
Cleared = {'yes';'no';'yes';'no';'yes'}; Price = [38;43;38;40;49]; Units = [71;69;64;67;64]; T = table(Cleared,Price,Units);...

3 years 前 | 0

| 已接受

提问


K-th order neighbors in graph
I would like to do this, but in Matlab with a graph (it is not a directed graph): https://stackoverflow.com/questions/18393842/k...

3 years 前 | 4 个回答 | 0

4

个回答

已回答
Acquiring corresponding Columns of Data when a condition is met
If I understood correctly, you are trying to obtain the values of the first column which has 'accepted' status. If so, try this:...

4 years 前 | 1

提问


Improve use of structure in function
I have the following lines: for x=1:800 for y=1:500 [mystruct(y).I] = ... inside...

4 years 前 | 1 个回答 | 0

1

个回答

提问


sortrows graph edges .
I have a graphs G. The G.Edges has 300 elements. I would like to sort the edges of my graph based on a given index (of size 300x...

4 years 前 | 2 个回答 | 0

2

个回答

提问


Exporting figure to image and being able to zoom in
Hello, I have placed multiple grids (grid: nodes connected by edges) in a single figure. With tool>restore view, each of the g...

4 years 前 | 1 个回答 | 0

1

个回答

提问


Plot graph with different markers
Hello, I have a graph G lets say with 100 egdes and 40 nodes. The G.nodes are of 3 types stored in a vector type (40x1). How can...

4 years 前 | 1 个回答 | 0

1

个回答

提问


Issue with precision using days function
I have a varriable x (this x was generated by reading an excel file). Using variable explorer I can see: x=0.465277777777778. ...

4 years 前 | 1 个回答 | 0

1

个回答

提问


Position of the left nearest one value in a vector
I have a vector of ones and zeros of this form: v = [0 0 1 0 0 0 1 1 1 1 0 0 1 1 0 0 0 0 0 1 0]; how can I get a vector with th...

4 years 前 | 3 个回答 | 0

3

个回答

已回答
Retime timetable out of bounds
For an strange reason copying data from one timetable to another as it was doing in this line, it's a time consuming ejecution (...

4 years 前 | 0

提问


Retime timetable out of bounds
I have a set of timetables inside a cell TT, each of them with a resolution of 15 minutes, the timetables have different starts ...

4 years 前 | 3 个回答 | 1

3

个回答

加载更多