Community Profile

photo

Sim


Last seen: 3일 전 2019년부터 활동

Followers: 0   Following: 0

통계

All
  • Explorer
  • First Submission
  • Thankful Level 5
  • First Review
  • First Answer
  • Revival Level 1

배지 보기

Feeds

보기 기준

답변 있음
One legend for a group of subtightplots
I found a way to add "side" legends still using subtightplot (not for grouped plots, but for single plots, that can occur more t...

3일 전 | 1

질문


One legend for a group of subtightplots
In the following plot, formed by 4 subtightplots, how can I have just one (outside) legend for the left plots, and just one righ...

5일 전 | 답변 수: 2 | 0

2

답변

질문


sprintf in 2 lines, with 2 variables, in bold, and interpreter latex
In the following example, plot(1:10,1:10) alpha = 3; string = 'Hello'; text(5,5,sprintf('$\\textbf{%s}$ {\\boldmath$\\alpha=...

5일 전 | 답변 수: 1 | 0

1

답변

질문


How to get a bar plot with unequal bin intervals?
How can I show the following bars (bar_heights) with unequal bin intervals (bin_edges)? bin_edges = [0 5; 5 20; ...

대략 2개월 전 | 답변 수: 1 | 0

1

답변

질문


The legend option called interpreter latex does not display the latex symbols correctly
If I use Interpreter latex in the legend, the latex text is not correctly displayed plot(1:10,1:10,'DisplayName','\eta_i') lin...

2개월 전 | 답변 수: 1 | 0

1

답변

질문


Extract single-digit and double-digit numbers at the same time from a cell array with "regexp"
Hi, I am trying to extract the numbers from the following cell array: a={'1','3','6-10','11-20'}; If I use regexp, the number ...

3개월 전 | 답변 수: 1 | 0

1

답변

질문


exportgraphics with ContentType vector does not work properly
I am trying to export a large figure as a PDF, through exportgraphics(h,'Figure.pdf','ContentType','vector') Matlab creates a ...

3개월 전 | 답변 수: 1 | 0

1

답변

답변 있음
Files read with "dir" have additional (nondesirable) characters
After the extremely useful comment of @Stephen23, I found a way to read my files: mypath = 'C:\Users\XXX\Desktop\...\'; files ...

3개월 전 | 0

질문


Files read with "dir" have additional (nondesirable) characters
Some csv files read by dir as '._20190217.csv' instead of '20190217.csv' ? How to remove dot and underscore in the names ...

3개월 전 | 답변 수: 2 | 0

2

답변

질문


An automatic way to change \ with / (windows vs. unix) only for "addpath"?
Is there an automatic way to change \ with / (windows vs. unix) only for "addpath" As example, I would need to convert many add...

3개월 전 | 답변 수: 3 | 0

3

답변

질문


Error when writing file names into a txt file ("nonscalar strings are unsupported")
I have a number of pictures in a folder and I would like to simply get their file names and write them into a txt file: % input...

3개월 전 | 답변 수: 1 | 0

1

답변

질문


How can I create randomly scattered points between two circles?
How can I create randomly scattered points between two circles? I would like to have 3 inputs (assuming that the two circles ar...

4개월 전 | 답변 수: 3 | 1

3

답변

질문


annotation with both "doublearrow" and "textblock", with same data units
I am employing the solution proposed by @Jorg Woehl in "Specify annotation position with respect to x- and y-axes values?" to us...

4개월 전 | 답변 수: 4 | 0

4

답변

질문


Pass the text of fprintf to the plot's text
Would it be possible to pass the text of fprintf to the plot's text? x = rand(1,10); plot(x) m = mean(x); sd = std(x); a = ...

5개월 전 | 답변 수: 1 | 0

1

답변

답변 있음
Unexpected interquartile range (IQR) result
my bad.. this is the solution: dataIQR = data( data > q(1) & data < q(3) ); and the vertical lines related to the quartiles n...

5개월 전 | 0

질문


Unexpected interquartile range (IQR) result
For a number of distributions I would like to compare and show the interquartile range (IQR) and the standard deviation (STD). ...

5개월 전 | 답변 수: 1 | 0

1

답변

질문


An easy way to add the mean to boxplotGroup of Adam Danz?
Is there an easy and straightforward way to add the mean to the boxplotGroup of @Adam Danz?

5개월 전 | 답변 수: 1 | 0

1

답변

질문


Mean of a cell array with different cell sizes?
Mean of a cell array with different cell sizes? % This works: a = {[1 3 4 5];[7 7 8 2];[5 4 1 9]} mean(cell2mat(a),2) % but ...

5개월 전 | 답변 수: 1 | 0

1

답변

질문


A compact way to reduce, or remove, the fractional part (separated by a decimal point) of numbers in a table
Given a table, could you please suggest a compact way to reduce, or remove, the fractional part (separated by a decimal point) o...

5개월 전 | 답변 수: 1 | 0

1

답변

질문


How to center the bars of the histogram over the elements of the input array?
How to center the bars of the histogram at the elements of the input array? I mean, in the following example I would like that ...

6개월 전 | 답변 수: 2 | 0

2

답변

질문


What is the mechanism or math behind the function islocalmax(A)?
What is the mechanism or math behind the function islocalmax(A)? I just refer to the the basic islocalmax(A) function, without ...

6개월 전 | 답변 수: 2 | 0

2

답변

질문


Why does exportgraphics not fully work, when using yyaxis?
Why does exportgraphics not fully work, when using yyaxis? This is my minimum working example: clear all;clc;close all; % ...

6개월 전 | 답변 수: 1 | 0

1

답변

답변 있음
Change properties in gscatter, based on the group label
Thanks both @Dyuman Joshi and @dpb! By mixing the @dpb and the @Cris LaPierre answers (that one from @Cris LaPierre is in Chan...

6개월 전 | 0

질문


Change properties in gscatter, based on the group label
How to set some specific properties for a specific group (i.e. marker, markersize, one specific color), let's say for group labe...

6개월 전 | 답변 수: 3 | 0

3

답변

질문


How to adjust the (absolute) width of bars to 1 unit in a bar plot?
How to adjust the (absolute) width of bars to 1 unit in a bar plot? In the following example, the bars are larger than 1 unit: ...

6개월 전 | 답변 수: 1 | 0

1

답변

질문


How to display a few xticklabels from a set of selected xticks?
How to display a few xticklabels, like [4, 53] in the following example, from a set of selected xticks? selected_ticks = [2 3 4...

6개월 전 | 답변 수: 1 | 0

1

답변

질문


How to change position of both ylabels in yyaxis left, within a subplot enrivonment?
How to change position of both ylabels in yyaxis left, within a subplot enrivonment? figure(); for i = [1 3 5] ax1 = sub...

6개월 전 | 답변 수: 1 | 0

1

답변

질문


Change colors (of groups) in scatter plot
The following matrix contains around 80 rows, representing 2-dimensional points (each row corresponds to a point), and 3 columns...

6개월 전 | 답변 수: 2 | 0

2

답변

질문


How to add pairs of graphs (generated through a function) to adjacent subplots?
How to add pairs of graphs (generated through a function) to adjacent subplots? The function "myfunction" produces two graphs, ...

6개월 전 | 답변 수: 1 | 1

1

답변

질문


A compact way to replace zeros with Inf in a matrix
Would you be so nice to suggest me a more compact way to replace zeros with Inf in the following matrix? (maybe with just one li...

6개월 전 | 답변 수: 5 | 0

5

답변

더 보기