Answered Plotting Piece-wise like function
You can use hold to plot multiple graphs in the same figure. This way you can graph any picewise function:
x1 = 0:3;
x2 = 3:4;...
8 månader ago | 0
| accepted
Answered 1-d array plotted with imagesc shown as 2-d
You can change the size of the current figure (gcf) using the position propery:
imagesc(1:10);
set(gcf,'position',[0, 0, 500, ...
8 månader ago | 0
Answered intensity value of the pixel located
Your image is stored as a matrix in MATLAB. So, for getting the pixel intensity value you need to read the image:
image_mat = r...
Answered How to export imaris image to MATLAB?
Hi!
While MATLAB doesn't support imaris file format out of the box (which can be check from here), you can use the implementati...
9 månader ago | 0
Answered Work with data just in selected paths
Hi!
Could you check in the lists of all search paths if you have accidently added those subfolders? You can check it using the ...
9 månader ago | 0
Answered Porting code to c++
Hello!
You can try the famous OpenCV library. It also has inbuilt constructs to parallelize your code. It uses the BSD 3-Clause...
9 månader ago | 0
Answered Setting Axis scale steps
Hello,
You can set the x-axis ticks using xticks function:
x = 0:0.1:5;
plot(x, sin(x));
xticks(0:0.83:5);
xlim([0 5]);
...
You can also select a web site from the following list:
How to Get Best Site Performance
Select the China site (in Chinese or English) for best site performance. Other MathWorks country sites are not optimized for visits from your location.