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;
No explanation or detail is required to understand the question.
03 July 2024 3,958 0 View
Please provide the commands to run autodock vina ?
21 June 2024 3,193 0 View
Need to do charcoal coating on the inner surface of stainless steel pipes. What is the process and which binder would be used?
21 June 2024 645 3 View
Can i perform molecular dynamics for ligand only in protein-ligand complex ?
18 June 2024 4,912 4 View
I'm using covariance-based SEM software. Do I need to normalize the data before I run the SEM model? The SEM model is fine and the data is large (744). 1. Do I need to normalize the data before I...
15 April 2024 422 5 View
Dear Research Community, I am encountering a significant hurdle in my research involving enzyme inhibition testing. The inhibitor I am investigating exhibits solubility exclusively in DMSO,...
05 April 2024 1,182 4 View
I've been working in the Library Department for the past six years, and I've noticed that only about 10% of students visit the library. I'm wondering if there is anywhere, for example, a set of...
20 March 2024 6,287 4 View
Objective : get strings and allocate memory using malloc and print the strings. #include int main() { int i, n, l; char *str; printf("Number of strings: "); scanf("%d",...
21 February 2024 6,264 0 View
i want to know the software that are useful for generation of force field.
11 February 2024 9,014 1 View
need practical based solutions of universal design for learning .
31 January 2024 7,897 3 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