Risposto
Sort Matlab table based on pre-defined order
Try the following: idx = [2 1 3 4]; T(idx,:) = T

circa 2 anni fa | 0

Risposto
Check if cell contains only certain combination of variables
You can do this with an "exclusive or" (see xor) where you check that you have exlusively either 'A' or 'B' xor 'C' or 'D', but ...

circa 2 anni fa | 0

| accettato

Risposto
Divide the 3D feature space into grid and then get their labels
Example in 2D % Data x = rand(1,100)*10; y = rand(1,100)*5; r = zeros(size(x)); % group index r(x>0 & x<=5 & y>0 & y...

circa 2 anni fa | 1

| accettato

Risposto
Reformat table with a column as a top row
You can reorganise the data pretty close to what you showed using unstack, but to get the header organised as you have shown wou...

oltre 2 anni fa | 0

| accettato

Risposto
How could I make a callback that updates when the user moves an roi?
This is what I had in mind: interactiveZoomDemo; function [] = interactiveZoomDemo() I = imread('saturn.png'); hf = figu...

oltre 2 anni fa | 0

| accettato

Risposto
How to decrease margins around uibutton in uigridlayout?
Use the ColumnSpacing property: g.ColumnSpacing = 1;

oltre 2 anni fa | 0

| accettato

Risposto
How to create rainbow colormap with violet
Violet is approximately [0.5 0 1] in the rgb space. So we can modify the blue part of the jet colormap, to have a bit more red ...

oltre 2 anni fa | 0

Risposto
Save an image from a matrix
Here's one way - convert to an 8 bit array with values between 0 and 255 and then save: I2 = 255*(I - min(I(:))) ./ (max(I(:)) ...

oltre 2 anni fa | 2

| accettato

Risposto
Would it be possible to change the greyscale to a blue scale?
I don't think MATLAB has a blue scale colormap. You could do something custom, like the following. I'll use camerman for illustr...

oltre 2 anni fa | 0

| accettato

Risposto
How to get integer pixel coordinates from roi rectangle?
When used on images, the drawrectangle function uses intrinsic image coordinates (see this documentation) as shown by the x and ...

oltre 2 anni fa | 0

| accettato

Risposto
Assign dimensions for my image. I have an image and I need to give it a length that I know.
The imref2d object is useful for exactly this. Let's have a look at an example: % Example of a Binary image BW = imbinarize(im...

oltre 2 anni fa | 0

Risposto
No effect of the FaceLighting property on a single patch?
There are two reasons. First is that you need to add a light object to the axes. To do that, use the light function. The secon...

oltre 2 anni fa | 2

| accettato

Risposto
How can I find distance in a binarized image
I originally answered this for the case of the binary image you represented in png format (this is not technically a binary imag...

oltre 2 anni fa | 2

| accettato

Risposto
how do i deduce the function using linear regression for a set of x and y values?
Consider using a power fit. Your data: x = readmatrix('https://uk.mathworks.com/matlabcentral/answers/uploaded_files/850570/x2...

oltre 2 anni fa | 1

| accettato

Risposto
I need to make a general code
Try this: function [idx,x] = chaoticInterleaver(N) assert(mod(N,8)==0,'N must be divisible by 8.') idx = zeros(N); x = N * (...

oltre 2 anni fa | 0

| accettato

Risposto
Rearrange a correlation matrix into a vector and keep track of the corr names.
You can get the corresponding row and column indices as follows: [iRow, iCol] = find(ind); Then you can get the corresponding ...

oltre 2 anni fa | 0

| accettato

Risposto
Properly centering interquartile ranges on graphed data
You can use the quantile function Your simulation: clc clearvars %Total number of replicates nr=1000; %Time step and lengt...

oltre 2 anni fa | 0

| accettato

Risposto
Converting a 2d array into a 3d array
You could write a linear index for the diagonal elements as follows: [m,n] = size(Z_int) Z = zeros(m,m,n); idx = repmat((1:...

oltre 2 anni fa | 0

Risposto
Image cropping in exact cordinate in cell array
You can make the following modification (make sure to place your cellfun calls after the for loop) cropped_imgs = cellfun(@(I) ...

oltre 2 anni fa | 1

| accettato

Risposto
Count instances of subarray inside array
You could do the following: b = A == 2; % binary indicating where A equal to 2 count = 0; ii = 1; while ii < numel(A) i...

oltre 2 anni fa | 0

Risposto
remove rows in table based on criteria across two columns
Try the following: T(contains(string(T{:,1}),'80ms,140ms') & T{:,2} ~= 1,:) = []; T(contains(string(T{:,1}),'100ms,250ms') & T...

oltre 2 anni fa | 0

| accettato

Risposto
Clone GitHub repository - Authentication Failed
You need to follow the steps described <https://uk.mathworks.com/help/matlab/matlab_prog/set-up-git-source-control.html#mw_77963...

oltre 2 anni fa | 0

Risposto
how do i store for loop values?
There's only one value because your code is working as follows: for ii = 1:3 A = ii + 1 end Matlab is not told where to ...

oltre 2 anni fa | 0

| accettato

Risposto
Cannot obtain structure elements where both field and variable are indexed into
Try the following: students(1).name='john'; students(2).name='andrea'; arrayfun(@(x) students(x).name(1), 1:2).'

oltre 2 anni fa | 0

| accettato

Risposto
I wanted to 3D plot my data like shown in attached image.
Use <https://uk.mathworks.com/help/matlab/ref/surf.html surf()> or doc surf there are several examples at both locatio...

oltre 2 anni fa | 0

Risposto
how to convert from grayscale to rgb by lightness method ??
You can do the following: I=imread('peppers.png'); newImage = uint8(( double(min(I,[],3)) + double(max(I,[],3)) ) ./ 2); im...

oltre 2 anni fa | 0

| accettato

Risposto
evaluate rising edge sample of a signal
Is it just the local minima you're having trouble with? Edit: The rising edge is found where the slope of the original data ...

oltre 2 anni fa | 0

| accettato

Risposto
How to marker a fplot(anonymous function) function on a specific point which user enters.
You can add it in at the end of your function using plot: function x=calcDisplacement(t) m=1100; k=570; c=430; x0=0.05; v0...

oltre 2 anni fa | 0

| accettato

Risposto
how to select and save particulat part of a column in mat file?
columns = [2 3 5]; rows = 50:100; x = mydata(rows,columns); save('mydata.mat','x')

oltre 2 anni fa | 1

| accettato

Risposto
How to save data in a vector for each loop indice?
x = 1:0.1:1.5; vec=zeros(size(x)); for ii = 1:numel(x) sol = x(ii)+1; vec(ii)=sol; end vec

oltre 2 anni fa | 1

| accettato

Carica altro