I am plotting a scatter plot in MATLAB. I have two questions?
1- how should I arrange my data in the EXCEL file in which my input data exist?
2- How should I order and define the error bar function in my code?
Dear Sara,
Even though the "scatter" does not support error bars, you can overlay the results of "errorbar" on top of "scatter". I am providing the following example:
x = [1,2,3]; y = x.^2;
scatter(x,y);
axis([0,4,0,10]);
hold on;
err = ones(size(x));
errorbar(x, y, err, 'LineStyle','none');
I need to model an anisotropic material in which the Poisson's ratio ν_12 ≠ ν_21 and so on. Therefore, the elastic compliance matrix wouldn't be a symmetric one. In ANSYS APDL, for TB,ANEL...
09 August 2024 5,048 2 View
Request Python code from this article : Gender equity of authorship in pulmonary medicine over the past decade. THANKS!
08 August 2024 6,242 2 View
Visual Studio Code (VS Code) has become a popular choice among developers for several reasons: 1. **Free and Open Source**: VS Code is free to use and open source, making it accessible to...
07 August 2024 7,013 4 View
I attempted to make a privately uploaded text public but a window appeared that said an error occurred. There was no explanation provided as to why there was an error or what might be done to...
05 August 2024 8,025 7 View
I need the python code to forecast what crop production will be in the next decade considering climate and crop production variables as seen in the attached.csv file.
05 August 2024 2,977 3 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
DOS version.
29 July 2024 6,064 1 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
I need a reliable source or an example supported by excel sheet to understand Fuzzy Vikor?
27 July 2024 5,916 1 View
all math can be traversed by code? all math can be translate to code?
26 July 2024 9,530 0 View