Search
 
SCRIPT & CODE EXAMPLE
 

MATLAB

matlab how to set figure size so you can see plot

h1=figure(1);
plot(t,y)
set(h1,'Position',[10 10 500 500])
Comment

set matlab figure size

f1 = figure();
% plot what ever you want! 

% then put code below.
set(f1, 'Position', [10 10 width height]);

% width -> Distance between the right and left inner edges of the figure.
% height -> Distance between the top and bottom inner edges of the window.
Comment

PREVIOUS NEXT
Code Example
Matlab :: matlab get row from matrix 
Matlab :: matlab measure time 
Matlab :: matlab symbolic function 
Matlab :: matlab rlocus 
Matlab :: matlab not less than 
Matlab :: matlab 
Matlab :: matlab symbolic integration 
Matlab :: matlab select element of matrix 
Matlab :: matlab pan 
Basic :: vscode unindent 
Basic :: watch starward ascii command 
Basic :: add firefox 
Basic :: visual basic non modal message box 
Elixir :: elixir replace string 
Elixir :: elixir get error message 
Elixir :: elixir Creating Custom Sigils 
Scala :: hashset scala 
Scala :: Exception: sbt.TrapExitSecurityException thrown from the UncaughtExceptionHandler in thread "run-main-0" 
Actionscript :: dynamic computed property vue 
Excel :: excel conditionally highlight rows based on column 
Perl :: perl exit loop 
Perl :: len perl 
Pascal :: pascal repetition 
Powershell :: Auto-open DevTools on every new tab For powershell on Windows 
Clojure :: clojure read file 
Assembly :: openssl public key der to pem 
Assembly :: dd utility explained examples 
Javascript :: jquery vslidation remove spaces from input 
Javascript :: jquery add input placeholder 
Javascript :: p5.js cdn 
ADD CONTENT
Topic
Content
Source link
Name
5+2 =