According to my knowledge subplot() is used inside loop to display all images in a single figure. I tried it, but I get separate figures e.g. 24 counter in a loop for 24 images than 24 separate figures get opened. How can I solve this problem?
Try this:
yourdata=rand(100,24);
figure(1)
for i=1:24
subplot(24,1,i); plot(yourdata(:,i))
end
figure(2)
subplot(1,24,i); plot(yourdata(:,i))
figure(3)
subplot(4,6,i); plot(yourdata(:,i))
figure(4)
subplot(6,4,i); plot(yourdata(:,i))
Hi... Perhaps you have "figure" command inside the loop. Try to move it to just before the loop.
Dear Sheema,
This is not correct:
"According to my knowledge subplot() is used inside loop to display all images in a single figure"
The use of subplot command to produce a figure;
subplot(461),...
subplot(462),..
subplot(463),...
subplot(4,6,24),..
create one figure which is named that has 24 plots in one figure.
Try this one:
fg = figure('NumberTitle','on','color','w','Position',[x y L H]);
...
for i = 1:5
%%%
% this part can be used as a function!
% function plotData(fg,data)
set(0,'CurrentFigure',fg);
clf;
for i1 = 1:i1l
subplot(1,i1l,i1);
plot(...);
hold on
set(gca, ....);
xlim([xMin xMax]);
hold off
% save figure
The way Hot pressing can be employ for thermoplastic multilayer, any such process or techniques for thermosets as well?
29 May 2024 504 3 View
In order to evaluate whether microsatellites were over- or underrepresented in genome sequences of members of the Caulimoviridae, we compared the observed number of microsatellites (O) with the...
23 May 2023 7,088 0 View
I am working working on He-Ne discharge with a fix pressure and rf source having frequency 27.2 MHz. I have recorded a spectrum with several power. Now I want to calculate gas composition and...
05 April 2021 5,730 0 View
I need papers to address this comment of the reviewer. My study is on the bibliometric study of virtual reality although but the reviewer wants me to add about the below: "There is a divorce...
31 March 2021 2,435 4 View
i am a research student and need a proper mechanism of action of DEN when introduced into mice, for my research work ...
07 January 2021 2,199 0 View
I need Coronary Angiogram Images(CAI) publically available dataset. Coronary Artery Disease (CAD) is a condition of the heart due to atherosclerosis. Atherosclerosis is the narrowing of arteries...
07 December 2020 6,711 3 View
Cognitive radios can help to share the spectrum among different networks, both satellite and terrestrial. Is it possible that we use the satellite spectrum for D2D/IoT communication in an urban...
28 August 2020 8,405 7 View
So for starters, how can we create a web-based API for creating a web-enabled simulator for Mobile Edge Computing
11 March 2020 10,051 3 View
Few researchers mentioned that both are the same and some mentioned both are different. Could anyone explain to me the difference between the two! Regards
22 December 2019 7,076 1 View
I have two points in an (x,y) coordinate system, the only information i have is the distance of these points from the origin and the distance between these two points. I need to find the...
09 October 2019 232 13 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
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
Hello, colleagues. Recently, I have been working on a metal processing simulation with my UMAT in Abaqus. I have outlined the corresponding simulation, but I keep encountering issues that cause...
30 July 2024 7,062 1 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
all math can be traversed by code? all math can be translate to code?
26 July 2024 9,530 0 View
Hello, I am a research scholar currently working on a project involving image segmentation, and I am interested in using differential evolution for this purpose . I would greatly appreciate it if...
25 July 2024 9,926 1 View
In running two-dimensional gel electrophoresis on bacterial protein, some spots that appear to match a protein sequence have a significantly more acidic isoelectric point than the calculated pI....
24 July 2024 8,076 3 View
Hello!!! I want to implement the Swerling characteristics functions (CF) directly in MATLAB without using its Fourier integral pairs...the Swerling CFs are actually Laplace Transform of the signal...
23 July 2024 4,925 1 View