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
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,470 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,228 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 9,793 3 View
currently I am starting a educational research project, My area of interest is educational leadership and management and school improvement. In this regard i am searching for a burning topic. If...
25 August 2019 5,785 1 View
Impact factor should at least be more 2.0. Electrical engineering, electronics or power electronics related.
16 April 2018 2,994 3 View
acidovarix avenae ssp avenae have no available proteins while other strains of this species have some available proteins so if the blast results of some genes of acidovarix avenae ssp avenae give...
02 May 2017 4,449 2 View
I have prepared nickel nanoparticles from chemical reduction method now I need to extract and dry these capped nanoparticles , suggest me the few best ways ,i studied lot of articles and...
15 July 2016 1,915 5 View
I have prepared various metal nanoparticles but I observed that Nickel nanoparticles's black colour solution becomes transparent after few hours,while others nanoparticles such as Cr, Co,Ag...
15 June 2016 3,045 2 View
I want to ask various techniques of separation of nanoparticles, I think different nanoparticles have different stability therefore different techniques should be used for separating them. Thanks...
15 June 2016 4,394 8 View
22 May 2016 7,490 3 View
I have selected brain tumor images ...but now found that already lots of research done n this topic.
03 March 2021 5,774 3 View
dear community, my model is based feature extraction from non stationary signals using discrete Wavelet Transform and then using statistical features then machine learning classifiers in order to...
03 March 2021 6,994 5 View
I'm involved in a study of odor control technologies for municipal wastewater treatment plant. One of the control options involves a chemical 2-stage (acid/alkaline) packed bed scrubber. The...
03 March 2021 3,661 2 View
Hello, good day! I am trying to simulate similar bimorph piezoelectric harvester with below commands. However, the output power doesn't change with resistor value. Please help to find the reason. ET,10,CIRCU94,0 !SET UP RESISTOR R,1,100000 !RESISTANCE VALUE TYPE,10 !SET ELEMENT TYPE E,1,2 !CREATE RESISTOR BETWEEN NODES 1 AND 2 Thanks in advance Regards,
02 March 2021 0 0 View
Do you have some recommendations approaches on Image processing and classification of plant diseases using TensorFlow/Keras?
02 March 2021 1,493 4 View
Working on chandrayaan-2 DFSAR data, there are three datasets available: 1) Slant range image data product: The slant range complex image file. Each pixel is represented by two 4-byte floating...
02 March 2021 8,481 3 View
I would like to research on MR images (0.5T and 3T). Can you please suggest some websites that I can download dataset including both 0.5T and 3T MR images? Thank you.
02 March 2021 7,735 3 View
Dear Researchers I am trying to perform a PIL simulation using STM32F4 Discovery board and comunication serial USB TO TTL. During simulation I receive the following timeout error: An error...
01 March 2021 2,327 1 View
Which is suitable for use with Python? MySQL or SQL Server? What is your suggestion?
01 March 2021 3,422 3 View
Hi dear researchers I connected a rigid body into the part of my structure by tie constraint and then I added displacement to rigid body, in static general step every thing is fine and these two...
28 February 2021 3,442 2 View