답변 있음
How to make a circular graph (node connections)?
The short answer is that you can indeed make these in Matlab, but it's not simple. You basically need to recreate the calcula...

대략 4년 전 | 0

답변 있음
Daily average of several years data
You might also take a look at reshapetimeseries.m (part of the Climate Data Toolbox). Setting the 'bin' option to 'date' will r...

대략 4년 전 | 0

답변 있음
error bars continue at other border of figure
I think the easiest way to do this would just be to plot the data, plus the data shifted one modulo to each side; the replicates...

대략 4년 전 | 1

| 수락됨

답변 있음
Plot curve becomes jagged after 1000 data points (seems to plot one point and stretch it the length of 10)
It's difficult to say without actually seeing the underlying data... but at first glance this looks like a change in precision i...

대략 4년 전 | 0

답변 있음
Heat (or color coded Map) in Matlab
In my opinion, the easiest way to do this is to alter the colors of the patches after plotting with mapshow/geoshow. An example...

대략 4년 전 | 1

| 수락됨

답변 있음
Can the vertical exaggeration of geographic axes be reduced so plots don't warp as much as they do now?
If you don't have the Mapping Toolbox, I recommend using m_map. Basically, you're asking to reinvent map projections, and that'...

대략 4년 전 | 0

답변 있음
What happened to the ESRI file in the mapping toolbox projection files in 2020b PR?
I'm not sure if this will work for your use case, but I wrote my shapeprjread function to parse certain projected shapefiles. I...

대략 4년 전 | 0

답변 있음
Colour plot vs Time on a circle
It's not clear to me whether you've already created the circle plots in Matlab, or if you just sketched out your desire outcome....

대략 4년 전 | 1

답변 있음
Contourf is plotting weird lines. How to remove them?
When you let contour choose contour levels automatically, it doesn't always choose the levels you really want. In this case, it...

대략 4년 전 | 3

| 수락됨

답변 있음
How can I make following part of code without for loop?
I'm having a hard time finding a solution that's faster than the original loop... % Build test data n_values = 10000; nc =...

대략 4년 전 | 0

| 수락됨

답변 있음
how to get the value in julian date and time
Can you explain what you're defining as "Julian date"? While the 4714 BCE reference date is the proper one for a real Julian da...

대략 4년 전 | 1

| 수락됨

답변 있음
change y values in figure to names
You need to calculate where each month falls, in terms of hours: ttk = datetime(2019,1:13,1); set(gca, 'xtick', hours(ttk-da...

대략 4년 전 | 3

| 수락됨

답변 있음
Is it possible to bring "grid on" to the front of a figure?
By default, all plotted objects are rendered on top of the axis (including axis lines, grid lines, etc). You can reverse that b...

대략 4년 전 | 4

| 수락됨

답변 있음
How to remove border line of a circle graph
set(gca, 'visible', 'off'); or axis off;

대략 4년 전 | 1

| 수락됨

답변 있음
preserving the absolute location of an annotation after changing axis limits, or typing 'axis square'
You might want to try my line2arrow function; it allows you to an an arrowhead to a line (plotted with normal axis coordinates),...

대략 4년 전 | 0

| 수락됨

답변 있음
World coordinates XY scale
The imshow function automatically sets the DataAspectRatio to be [1 1 1], i.e. the same effect as axis equal. To undo this, set...

대략 4년 전 | 1

| 수락됨

답변 있음
Counting how many times a number occured after a specific number
This is a good use case for accumarray: S = [ 3 2 2 4 3 1]; [seq, ~, g] = unique([S(1:end-1)' S(2:end)'], 'rows'); n = ...

4년 초과 전 | 2

| 수락됨

답변 있음
How do I extract the HH:MM:SS.FFF portion of a julian day time stamp?
An alternative method that avoids regular expressions would be to let datetime to the parsing for you: Data_Time_Stamp_Cells = ...

4년 초과 전 | 1

답변 있음
Unstack - How to break a table into equal chunks of data?
I usually just use splitapply for this sort of thing. (And the kron trick is a nice one for generating repeating blocks of numb...

4년 초과 전 | 1

답변 있음
Plotting with four y-axes in the same figure, with multiple datasets against one of the y-axes
While there are a lot of FEX options out there, I really think it's easier to manually control things once you start playing aro...

4년 초과 전 | 6

| 수락됨

답변 있음
How do I create a 2d surface plot for a function of x and y?
Change fxy = sin(x).*cos(y) to fxy = sin(xm).*cos(ym)

4년 초과 전 | 1

답변 있음
Plotting contourf with discrete x axis
The contour function always assumes your input data are points on a surface that can be linearly interpolated between. To get a...

4년 초과 전 | 1

| 수락됨

답변 있음
what does the string #ok<NASGU> mean in the code editior
That code disables the Code Analyzer from suggesting changes to the syntax. Specifically, <NASGU> refers the the ID associated ...

거의 5년 전 | 1

답변 있음
How to combine all columns of an array into one column?
Are the values in A always going to be less than 10? If not, what answer do you want? I see two possibilities; treat each valu...

거의 5년 전 | 0

답변 있음
(mapping toolbox) Map axes xdata, ydata and zdata meaning?
Map axes apply a geographic transform to convert the geographic coordinates to the projection used by the map axis. You can per...

거의 5년 전 | 2

| 수락됨

답변 있음
cut out section of x axis
Rather than shifting data and manually overriding tick labels, I prefer to use multiple axes to achieve breaks like this. The a...

거의 5년 전 | 5

답변 있음
Plotting X, Y cordintions with a line short line that indicates the angle
With quiver, the u and v arguments represent the horizontal and vertical components of the arrow you want to draw. You can calc...

거의 5년 전 | 1

| 수락됨

답변 있음
How can I assign several values from cell-array tovariables?
I think you'll need to use a quick intermediate variable so you can convert the numeric array to a comma-separated list: tmp = ...

거의 5년 전 | 1

| 수락됨

답변 있음
How to use animated line
A couple notes here... First, plotting a graph object creates a GraphPlot object, not a line, so it can't be used (out of the b...

거의 5년 전 | 1

| 수락됨

답변 있음
Creating a graph with both descending and ascending x-axis and one y-axis
Does this do approximately what you want? ax(1) = axes('position', [0.1 0.1 0.4 0.8], 'box', 'off', 'yaxisloc', 'left', 'xdir',...

대략 5년 전 | 1

| 수락됨

더 보기