MATLAB isn't working to generate figures

11 views (last 30 days)
hufsa tahseen
hufsa tahseen on 19 Jan 2021
Edited: Daniel Pollard on 19 Jan 2021
my matlab is not generating any output like its not giving the figure when i write i amshow command or performaning any commands given below ...please help its argent

Answers (1)

Daniel Pollard
Daniel Pollard on 19 Jan 2021
Use hold on and hold off when generating figures. I've not used imshow before, but I'll guess that each time you generate a figure it overwrites the old one. The hold commands stop that.
While I'm here:
Also, I can't test if my suggestion helps you, because I can't run a screenshot of your code. Copy and paste your code, format it correctly and attach any files you use and someone will be 100x more likely to be able to help.
  5 Comments
hufsa tahseen
hufsa tahseen on 19 Jan 2021
can you please guide me how can i use hold commands i have no idea about it
Daniel Pollard
Daniel Pollard on 19 Jan 2021
Edited: Daniel Pollard on 19 Jan 2021
When you create a figure, you can tell Matlab to keep working on that environment until you say otherwise. This is particularly useful if you want to plot multiple things on the same axis, or generate multiple plots without overwriting any others. For example, for your code, I would write
figure; hold on
imshow(A);
title('original')
hold off
C=C*17;
figure; hold on
imshow(uint8(C));
hold off
D=D*85;
figure; hold on
imshow(uint8(D));
title('2-bit');
hold off
E=E*255;
figure; hold on
imshow(uint8));
title('1bit');
hold off
Let me know if that works.
Edit In the future, it's very helpful to use the matlab documention if you're unsure. Googling matlab hold returns the documentation as the first result, or you can type help hold or doc hold into your Matlab command window (even without an internet connection) to see the documentation.

Sign in to comment.

Categories

Find more on Environment and Settings in Help Center and File Exchange

Products


Release

R2020a

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!