Posts

How to delete a specified file in MatLab? - delete -- MatLab

 How to delete a specified file in MatLab? - delete -- MatLab delete command delete <filename> source: Delete files or objects - MATLAB delete (mathworks.com)

How to close figure in MatLab? - close -- MatLab

 How to close figure in MatLab? - close -- MatLab close command How to close current figure? close; How to close all figure? close all; or close('all'); source: Close one or more figures - MATLAB close (mathworks.com)

How to create new figure ( window for plotting ) in MatLab? - figure -- MatLab

 How to create new figure ( window for plotting ) in MatLab? - figure -- MatLab figure command it take a key-value pair arguments. So number of input argument can only be even (0 , 2 , 4 ,...). How to create new empty figure? f=figure; How to create new figure empty figure and set its  Name as 'Measured Data'? figure( 'Name' , 'Measured Data' ); How to create new figure empty figure and set it as figure f1? f2=figure(f1); source: Create figure window - MATLAB figure (mathworks.com)

How to create a mesh grid point in MatLab - meshgrid -- MatLab

How to create a mesh grid point in MatLab - meshgrid  -- MatLab Here is my code and results about meshgrid.   %meshgrid_example clear clc x = 1:3; y = 1:5; [X,Y] = meshgrid(x,y) %{ X = 1 2 3 1 2 3 1 2 3 1 2 3 1 2 3 Y = 1 1 1 2 2 2 3 3 3 4 4 4 5 5 5 %} "1\n" x = 1:3; y = 1:5; [X,Y]=meshgrid(x) %similar to %[X,Y]=meshgrid(x,x) %{ X = 1 2 3 1 2 3 1 2 3 Y = 1 1 1 2 2 2 3 3 3 %} "2\n" x = 1:3; y = 1:5; z = 1:4; [X,Y,Z]=meshgrid(x,y,z) %{ X(:,:,1) = 1 2 3 1 2 3 1 2 3 1 2 3 1 2 3 X(:,:,2) = 1 2 3 1 2 3 1 2 3 1 2 3 1 2 3 X(:,:,3) = 1 2 3 1 2 3 1 2 3 1 2 3 1 2 3 X(:,:,4) = 1...

images in MatLab -- MatLab

 images in MatLab -- MatLab type of images image imagesc 2D image imagesc details image display image from array. imagesc display image with scaled colors. more details on: Types of MATLAB Plots - MATLAB & Simulink (mathworks.com)

animation in MatLab -- MatLab

 animation in MatLab -- MatLab type of animation animatedline comet comet3 2D animatedline comet 3D comet3 more details on: Types of MATLAB Plots - MATLAB & Simulink (mathworks.com)

volume visualization in MatLab -- MatLab

volume visualization in MatLab -- MatLab type of volume visualization  streamline streamslice streamparticles streamribbon streamtube coneplot slice  2D streamline streamslice streamparticles 3D streamribbon streamtube coneplot more details on: Types of MATLAB Plots - MATLAB & Simulink (mathworks.com)