Answered
How to change several text parts in legend to be bold and colored and unchange others?
What is wrong specifically with using the tex interpreter?: figure plot(rand(10,1),rand(10,1),'ko',rand(10,1),rand(10,1),'ro',...

meer dan 4 jaar ago | 6

| accepted

Answered
Transformation of matrix indices in polar coordinates - quicker way
You can just pass all of the indices to cart2pol as vectors: mat = rand(120,100); cent = size(mat)./2; [rr,cc] = meshgrid(1:s...

meer dan 4 jaar ago | 1

| accepted

Answered
Users not getting License from Assigned group
This is a question for Mathworks support: https://uk.mathworks.com/support/contact_us.html?s_tid=sp_ban_cs

meer dan 4 jaar ago | 0

Answered
how to create convex hull from white pixels
You can use bwlabel to label parts of a binary image, but your line is broken so you will have to dilate the image first to make...

meer dan 4 jaar ago | 0

Answered
I Want to find stable output of transfer function using oid but the comment is '??? Undefined function or variable 'pid'.'
You want to use the function 'pid': https://uk.mathworks.com/help/control/ref/pid.html but you get an error? Did you check th...

meer dan 4 jaar ago | 0

Answered
How to set colorbar tick labels between ticks
Does it matter if the ticks are moved as well? figure('Position',[200 200 1000 200]) plot(0,0) cc = colorbar('Location','Sout...

meer dan 4 jaar ago | 2

| accepted

Answered
Infil NaN for missing years in time series
If you don't mind converting your data to tables you can use outerjoin: A = [1981 0.79 1.56 0.90 1.15; 1982 0.62 0.83 0.84 0.7...

meer dan 4 jaar ago | 0

| accepted

Answered
plotting 2D data with respect to a third property
Can you be more specific about what is wrong with scatter? x = rand(100,1); y = rand(100,1); z = rand(100,1); figure scat...

meer dan 4 jaar ago | 0

| accepted

Answered
Replacing missing data with the previous data in a column
You are making cell arrays in your question by using curly {} brackets. I'm going to assume this is a mistake because you call t...

meer dan 4 jaar ago | 0

Answered
Looping within a structure
What are the values stored in point1.struct? Is your question about accessing fields of the table generally? If so you should l...

meer dan 4 jaar ago | 0

Answered
Different conditions, matching values
I don't really see how the output you give represents what you described in the question, or what you mean by "that calculatio...

meer dan 4 jaar ago | 0

Answered
could anyone help me to solve the issue
Its sounds like your question is: Each row can only have maximum 3 numbers greater than zero and each row must have these maxim...

meer dan 4 jaar ago | 0

Answered
Error using horzcat in linprog
It's hard to read your answer, please look at this first next time: https://uk.mathworks.com/matlabcentral/answers/6200-tutoria...

meer dan 4 jaar ago | 0

Answered
How to generate random numbers from the Weibull-Gamma distribution ?
I'm not really familiar with the Weibull-Gamma distribution, do you mean the Gamma-Weibull distribution? Or do you mean you wa...

meer dan 4 jaar ago | 0

| accepted

Answered
Index out of bounds error but cannot see why variable isn't generating properly.
This is really hard to debug without the actual code (generally posting the actual code is far more helpful than posting images ...

meer dan 4 jaar ago | 0

Answered
Does anyone knows an Answer to this question?
Well let's think about it a little, in Matlab the multiplication sign (i.e. 5 x 5 = 25) is represented by an asterisk (*). Gener...

meer dan 4 jaar ago | 1

| accepted

Answered
How to eliminate the jaggedness of the picture drawn by Matlab
The jaggedness is called aliasing and it happens when in image, shape or function is downsampled, for instance when an exact fun...

meer dan 4 jaar ago | 1

| accepted

Answered
Help with creating clustering
I think the biggest problem here is that you have very few data points. Have you tried looking at the various options on this p...

meer dan 4 jaar ago | 0

| accepted

Answered
Cant change the background using image segmentaton
This image looks like a real nightmare for edge detection etc and I don't know if you are really every going to get something sa...

meer dan 4 jaar ago | 0

Answered
Cropping image with Bounding Box
What sort of image is 'IMG_1800.jpg'? Because regionprops expects a logical or labelled image as the first input. If your imag...

meer dan 4 jaar ago | 0

Answered
How to trace (detect) the boundary changing under compression?
It seems like you have 3 regions; a light background a darker inner ring and then a really dark core. You want to detect the in...

meer dan 4 jaar ago | 0

Answered
Multiple Y variables in RealTime
If you mean that distance1 has too many elements to be plotted you could just downsample it - i.e. by taking every 10th or 100th...

meer dan 4 jaar ago | 0

Answered
Refreshdata slowing down unrelated plots/functions
I'm not really familiar with uicontrols, but you could try clearing your axes when they are updated. i.e. function update_plot...

meer dan 4 jaar ago | 0

Answered
Error of subscript indices must either be real positive integer or logicals.
Run this command at the command line: dbstop if error When you get your error Matlab will point you to a specific line, go the...

meer dan 4 jaar ago | 1

Answered
SSIM between grey-scale images
Can you check by typing 'ver' in the matlab command window and telling us what shows up? Also can you type 'which ssim' in the ...

meer dan 4 jaar ago | 0

Answered
How to change the date form in the figure from default to yyyy-MM-dd
I don't know about the Chinese system language, so I would probably suggest getting the date in whatever format you want using d...

meer dan 4 jaar ago | 0

Answered
Calculating moving average of a 3D matrix
I don't quite understand what you want, you have a 3D matrix which is 412x314x200 and you want to get a 1x200 vector where each ...

meer dan 4 jaar ago | 0

| accepted

Answered
Is function / variable highlighting possible in MATLAB?
I don't know about colouring functions but the rest of that colour scheme can be replicated using stuff like this: https://gith...

meer dan 4 jaar ago | 0

Answered
Plot 2D circle image with color bar
Maybe you could adapt this: https://uk.mathworks.com/matlabcentral/fileexchange/13200-3d-polar-plot or this: https://uk.mathw...

meer dan 4 jaar ago | 0

Answered
Visualize 4D data from pressure measurement
I have used this function on the fileexchange in the past and I think it is really good: https://uk.mathworks.com/matlabcentral...

meer dan 4 jaar ago | 1

Load more