Community Profile

photo

Alberto Acri


Last seen: Today Con actividad desde 2020

Estadísticas

  • Thankful Level 5
  • Thankful Level 2
  • Explorer

Ver insignias

Content Feed

Ver por

Pregunta


Subdivide each pie chart segment by the numbers inside a vector
Hi. I would like to subdivide each pie chart segment using numbers inside a vector. The code I am using is this: MMM = import...

alrededor de 3 horas hace | 0 respuestas | 0

0

respuestas

Pregunta


split cell (containing strings) into cell according to the value of C (column)
Hi! Is there a way to split cell 'a4' (containing strings) into cell 'a4_new'? In particular I would like to divide the column...

2 días hace | 1 respuesta | 0

1

respuesta

Pregunta


pie chart not complete - a pie is missing
HI! Why is the pie chart not complete? I would like to take into account the values present in 'matrix_analysis'. load matrix_a...

2 días hace | 1 respuesta | 0

1

respuesta

Pregunta


extract the number with only the first decimal number
I have to extract the number with only the first decimal number Examples: 1.23 -> 1.2 2.49 -> 2.4 4.77 -> 4.7 7.51 -> ...

2 días hace | 1 respuesta | 0

1

respuesta

Pregunta


divide the matrix (Rx2) into submatrices based on the values ​​of the second column
HI! I tried to split the 'matrix_out' matrix into submatrices with steps of 0.1 and for the most part I succeeded. load matrix_...

2 días hace | 1 respuesta | 0

1

respuesta

Pregunta


insert two vertical axes (left and right) into the same bar graph
Hi! How can I enter the correct values into the y-axis on the right? They must match the values of CountArray(:,3)! load CountA...

3 días hace | 2 respuestas | 0

2

respuestas

Pregunta


remove numbers of an matrix from another matrix
Hi. How can I remove numbers of an matrix from another matrix? I have two matrices: M1 = [7 21; 41 52; 47 65; 14 41; 14 55]; ...

4 días hace | 2 respuestas | 0

2

respuestas

Pregunta


transform the number cell so that only numbers (with or without decimals) excluding zeros are visible
Hi. I want to transform the number cell "N" so that only numbers (with or without decimals) excluding zeros are visible (see for...

7 días hace | 3 respuestas | 0

3

respuestas

Pregunta


add text above the legend on pie chart
Hi! I would like to add text above the legend (as shown). Is there the possibility of doing this? Here is the code: matrix ...

9 días hace | 1 respuesta | 0

1

respuesta

Pregunta


rounding a number up to a decimal point
Hi! I have a number: N = 5.00001:5.99999; % N greater than 5 and less than 6 I want to round the number N up so that I get ...

9 días hace | 1 respuesta | 0

1

respuesta

Pregunta


Transform double to char with one or two decimal places
I have a series of numbers: n_A = 3.15; n_B = 3.7; I have to transform them into char considering 1 or 2 decimal digits based...

11 días hace | 1 respuesta | 0

1

respuesta

Pregunta


transform exponential number to decimal
Hi. I have the following cell: M1 = importdata("M1.mat"); A = compose('%d (%2d%%)', [M1(:,1), M1(:,2)]); How can I turn expon...

11 días hace | 2 respuestas | 0

2

respuestas

Pregunta


delete all the decimal digits that are 0 after the first decimal place
Hi! I need to transform the vector V with only the first decimal. Is there an easy way to do this? For example I am trying this...

12 días hace | 2 respuestas | 0

2

respuestas

Pregunta


merge multiple cells in only one
Hi! How can I merge these two cells? Final results:

14 días hace | 1 respuesta | 0

1

respuesta

Pregunta


Arrange numbers circularly around the pie chart
I create this graph chart: matrix = importdata("matrix_out_INF.mat"); % =============== % Filter the matrix to include on...

14 días hace | 1 respuesta | 0

1

respuesta

Pregunta


extract all rows of a matrix except 'r' (vector) rows
Hi! I need to extract all rows of 'matrix' except 'r' rows. matrix = [54; 55; 56; 57; 58; 59; 60; 61; 62; 63; 64; 65]; r = [1;...

14 días hace | 3 respuestas | 0

3

respuestas

Pregunta


Subdivide a cell, based on the number of columns, inside a for loop
Hi! I would like to compact the rows 'char2string1', 'char2string2', ... inside a for loop. How could I do this? char2string =...

14 días hace | 1 respuesta | 0

1

respuesta

Pregunta


transform the cell 'string' containing strings into a single string
Hi! I need to transform the cell 'string' containing strings into a single string, like this: string_new = "54 55 56 57 59 60 6...

16 días hace | 2 respuestas | 0

2

respuestas

Pregunta


Apply a color to a slice of the pie chart
I need to apply white color to a slice of the pie chart. I used the following code but it creates the slice in black color even ...

19 días hace | 2 respuestas | 0

2

respuestas

Pregunta


create a pie chart knowing the percentage value
I have the matrix 'matrix' characterized by the first column by numbers and the second column by percentage values. matrix = [7...

20 días hace | 1 respuesta | 0

1

respuesta

Pregunta


create a pie subgraph with assigned percentage values
I am using the following code to create a pie chart: number = [78;79;80;81;82;83;84;85;86;87;88]'; value = [4509;5239;6400;907...

21 días hace | 1 respuesta | 0

1

respuesta

Pregunta


pie chart creation with name (number) and corresponding percentage
Hi! I would like to create a pie chart like in the present demo: x = [1,2,3]; p = pie(x); pText = findobj(p,'Type','text');...

23 días hace | 2 respuestas | 0

2

respuestas

Pregunta


enter values from 0 to N (imposed value) with step of 100 on the x-axis of the bar graph
Hi. I need to change the values on the x-axis of a bar graph. I have tried in the following way but it doesn't seem to work. W...

29 días hace | 2 respuestas | 0

2

respuestas

Pregunta


Extract rows from a matrix considering continuous numbers in the first column
Hi! I would need to extract from the matrix 'matrix' the rows that start at 'r_max_total' and extend to the top and bottom rows ...

30 días hace | 1 respuesta | 0

1

respuesta

Pregunta


Change values of 'x-axis (bar graph) as integers
Hi! I have an example of a generated bar graph: Automatically Matlab generates an x-axis with the values multiplied by 10^4. ...

alrededor de 1 mes hace | 1 respuesta | 0

1

respuesta

Pregunta


for loop for generate overlay bar graphs
I generated a bar graph of the following type: load matrix.mat matrix = matrix(1:2,:); x = matrix(:,1)'; wR = 0.5; wB =...

alrededor de 1 mes hace | 1 respuesta | 0

1

respuesta

Pregunta


transform bar chart with separate bars (for each value of y) to bar chart with overlapping bars
Hi. I need to transform this figure: load matrix.mat matrix = matrix(5:7,:); figure(); cm = [1,0,0; 0,0,1; 0,1,0; 1,0,0.5...

alrededor de 1 mes hace | 1 respuesta | 0

1

respuesta

Pregunta


Extract some rows of the matrix with the find command
Hi. I would like to select rows from a 'matrix' array that have values between 0 and 2 in the third column of 'matrix'. I was ab...

alrededor de 1 mes hace | 2 respuestas | 0

2

respuestas

Pregunta


determine within cell the coordinates (rows/columns) having equal 3 numbers
How can you determine within cell 'out' the coordinates (rows/columns) having equal 3 numbers? I would need to get a matrix th...

alrededor de 1 mes hace | 3 respuestas | 0

3

respuestas

Pregunta


transform the cell (50x95 cell) into the matrix 'in' (50x95x3 uint8)
Hi! How can I try to transform the cell 'out' (50x95 cell) like the matrix 'in' (50x95x3 uint8)? I am trying this way but I sho...

alrededor de 1 mes hace | 1 respuesta | 0

1

respuesta

Cargar más