I want shading plot in similar form of attached image.
Can anybody suggest me matlab code for this problem?
May be this link can help
http://stackoverflow.com/questions/6245626/matlab-filling-in-the-area-between-two-sets-of-data-lines-in-one-figure
Take a look to this link
http://jvoigts.scripts.mit.edu/blog/nice-shaded-plots/
Here's an example (I tested this with GNU Octave 3.6, should also work with Matlab):
octave:202> x = [1:100]; % x values
octave:203> y = sin(x/10) + 0.3*rand(size(x)); % y values
octave:204> dy = 0.1 + 0.2*rand(size(x)); % width of shading (y uncertainty?)
octave:205>
octave:205> clf; % clear figure (just in case something was there before)
octave:206>
octave:206> % draw shading behind plot line:
octave:206> X = [ x fliplr(x) ];
octave:207> Y = [ y-dy fliplr(y+dy) ];
octave:208> col = [1 0.5 0.5];
octave:209> patch (X,Y,'facecolor',col,'edgecolor',col); hold on;
octave:210>
octave:210> % plot line
octave:210> plot (x,y,'r','linewidth',2); hold off;
Here is a ready solution:
http://www.mathworks.com/matlabcentral/fileexchange/26311-shadederrorbar
I would like to know where I can get diabetes data with information about patient. Thank you in advance!
11 December 2017 3,238 2 View
I have eight ODE systems and one Parameter. I want show a pitchfork bifurcation in Matlab related to eight ODE systems. Can anybody suggest me the Matlab Code?
09 October 2014 8,005 2 View
.
07 August 2014 9,659 6 View
My problem is related to microbial nitrogen cycle.
06 July 2014 1,312 3 View
03 April 2014 8,728 7 View
. I have Ax = Iy, where A matrix and I Identity matrix.
10 November 2013 1,173 1 View
09 October 2013 1,986 3 View
I want add noise with ODE.
09 October 2013 794 4 View
In terms of biochemical reactions, what is the main difference between Pathway and Network? Can anyone give me some suggestions with examples?
08 September 2013 6,565 4 View
I'll try to find all chemical reactions related N - Cycle occurring in soil.
08 September 2013 9,834 4 View
We assume that the difference is huge and that it is not possible to compare the two spaces. The R^4 mathematical space considers time as an external controller and the space itself is immobile in...
10 August 2024 6,678 14 View
I would like to understand potential safety concerns while handling SEB in the lab. Especially while working in animal house facility. Would like to know precautions for handling. Sigma MSDS...
07 August 2024 6,034 3 View
During low-temperature testing, new diffraction peaks that appear could be indicative of several phenomena. In one of our tests, we observed notable new peaks around 40° and 45° in a specific...
06 August 2024 726 3 View
- The Existence/Uniqueness of Solutions to Higher Order Linear Differential Equations - Higher Order Homogenous Differential Equations - Wronskian Determinants of $n$ Functions - Wronskian...
03 August 2024 2,366 0 View
I have an RNA-seq data that I have analysed using Limma-voom and have extracted the gene IDs, log2FC and the p-values. At p value < 0.05, I have over 10,000 DEGs, however, when I run the GO...
31 July 2024 225 2 View
I am new to Micromechanics and having similar problem with understanding the implementation of the formula's. I would appreciate if anyone can guide me on how to go about getting a scalar value...
30 July 2024 969 0 View
Dear all, I am working on particle deposition in human's & rat's respiratory airways using CFD and I am looking for the 3D CAD file for my simulations (STEP or IGES format). If somone has such...
29 July 2024 1,092 2 View
Some Staphylococcus aureus strains Inhibit the growth of Mycobacteria in Mueller Hinton Agar medium containing 10% OADC. Do some Staphylococcus aureus strains have in vitro antimycobacterial activity?
29 July 2024 10,023 2 View
Please, what is the memory consumption of the Matlab function quad tree decomposition procedure [S = qtdecomp(I)] with respect to the input set I?
27 July 2024 5,455 2 View
We assume that we can find a statistical matrix mechanics equivalent to Schrödinger's PDE in two consecutive steps: i-Transform the Schrödinger PDE describing the wave function Ψ into its square...
27 July 2024 3,959 4 View