Risposto
Image Region filter how to only get mask for one area?
I would check Exclude Border If you click the dropdown box under Export>Export Function function [BW_out,properties] = fil...

oltre 4 anni fa | 0

Risposto
Not a map axes. How to plot quiver and geobasemap in one figure?
geoplot([44.392186 44.393524],[8.930812 8.931615],'w:') geolimits([44.390 44.396],[8.928 8.934]) geobasemap satellite load('F...

oltre 4 anni fa | 0

| accettato

Risposto
how to grab text from figure's suptitle and subplot titles
subplot(2,2,1) plot(1:10,rand(1,10)) title('pick me'); subplot(2,2,2) plot(1:10,rand(1,10)) title('not me'); subplot(2,2...

oltre 4 anni fa | 2

Risposto
Help making my code more efficient
Below I created a nested loop as requested. If the comments do not provide enough guidance, please let me know. x = 2590; fo...

oltre 4 anni fa | 0

| accettato

Risposto
Need help with looping data files in
HeaderRowCount = 7; trials = 3; idx = setdiff(0:10:150,[30:10:40 60:10:90 130:10:140]); for i = 1:length(idx) for R ...

oltre 4 anni fa | 0

Risposto
How to change one pixel only in plain image?
I = imread('peppers.png'); imshow(I) size(I) I(45,45,1) = 255; % red I(45,45,2) = 255; % green I(45,45,3) = 255; % blue...

oltre 4 anni fa | 0

Risposto
Import data from text file
I used the import data button on the toolstrip to import the text file. Then I generated the function below. DataChan1 = import...

oltre 4 anni fa | 1

| accettato

Risposto
Matlab App Designer Clickable Image only clickable once
I would use strcmp to compare image source just in case there is an error with the character arrays being different sizes (e.g. ...

oltre 4 anni fa | 0

Risposto
Can you code A 3D Building in MATLAB?
This is the approach I would take. %preallocate m = zeros(100,100,100); m(1,21:80,21:80) = ones(60); angle = 0.25:0.25:360...

oltre 4 anni fa | 0

| accettato

Risposto
Trying to index an array and extract its values with a for loop.
Below are two possible ways. If data is in table, t=table; t.column1 = [1 2 3 4 0 3 4 2 3 4 0 3 1]'; t.column2 = [8 7 9 0 ...

oltre 4 anni fa | 0

Risposto
How do you plot a set of 2D images diagonally?
Is this what you are looking for? x = 1:14;%rand(1,14); z = 1:14;%rand(1,14); y = 1:14;%rand(1,14); y1 = 7; imgset = ra...

oltre 4 anni fa | 0

Risposto
Error Using cellfun for a Matrix
a = rand(81,81); n = 3*ones(1,27); a_d = mat2cell(a,n,n); for i = 1:27 for j = 1:27 G_x = @(x) sum((x-a_d{i,j})./(x+a_d...

oltre 4 anni fa | 1

Risposto
Fit ellipse to objects in image
I would suggest using regionprops. Steve Eddins walks through the process on his blog. https://blogs.mathworks.com/steve/2015/0...

oltre 4 anni fa | 2

| accettato

Risposto
Different outputs when using { : }
When you used the braces the way you did, it turned the string array into a character array. I would look at the following: ...

oltre 4 anni fa | 0

| accettato

Risposto
Adding and display in AppDesigner GUI
How do you want the text to be displayed? If you want it to display 'x2 value, 1', you can do the following: function Button_5...

oltre 4 anni fa | 1

| accettato

Risposto
Vectors must be same lenght
AB=200; BC=480; CD=480; DQ=450; AQ=480; FB=100; DE=600; AF=300; ED=600; DC=CD; x=AQ; y=DQ; a2=CD; a3=BC; a4=AB; ...

oltre 4 anni fa | 0

| accettato

Risposto
saving files in .mat in another folder
I am going to assume that you are reading image files and then trying to save them in another folder as mat files. %Select fold...

oltre 4 anni fa | 0

Risposto
How to create a big 3D matrix from different blocks with the same volume?
n1=100; % dimension of main matrix n2=16; % dimension of blocks m=zeros(n1,n1,n1); %Null matrix of dimension 100x100x100 m1=o...

oltre 4 anni fa | 0

Risposto
How to find out standard deviation of a matrix when there is a lot of NaN values?
You can ignore NaN values with the std function by adding 'omitnan' as an input. A = rand(9,9); A(3,4) = NaN; A(7,8) = NaN;...

oltre 4 anni fa | 2

| accettato

Risposto
How to register and average images together from a mat file
Here is some informaiton on image registration: https://www.mathworks.com/discovery/image-registration.html https://www.ma...

oltre 4 anni fa | 2

Risposto
Matlab plot not lining up correctly with x-axis
You need to change the number of ticks along the x axis. %Plotting% Months_x={'Jan'; 'Feb'; 'Mar'; 'Apr'; 'May'; 'Jun'; 'Jul';...

oltre 4 anni fa | 1

| accettato

Risposto
How do I rotate the view of a cylinder created using surf plot?
Here is another method, if you want to rotate the surf plot. figure [x,y,z] = cylinder(2,20); obj = surf(x,y,80*z); xlim([-1...

oltre 4 anni fa | 1

Risposto
Each data point plots as individual points not as one set of many points
obj = VideoReader('VidName.avi') %same name as file you create in step 1 video = read(obj); for i=1:150 %number of frames of t...

oltre 4 anni fa | 1

| accettato

Risposto
Create an array containing numeric and symbolic variables
syms t1 t2 d; DH = {0 0.4 0 t1 %i = 1 0 0.1 -90 t2 %i = 2 0 d 90 0} %i = 3 isnumeric(DH{1,1}) isnumeri...

oltre 4 anni fa | 0

| accettato

Risposto
Matlab code wont run. Matrix dimensions must agree error
I did not come across that issue when I defined omega as omega = (pi*beta/T)*cos((2*t - T)*pi/(2*T)); before running that line. ...

oltre 4 anni fa | 0

Risposto
i want to delete cells that contain 0's
Assuming the values in cell array are numeric: cellarray = {34 , 23, 4, 123, 0 ,423, 4312;34 , 23, 4, 123, 5 ,423, 4312;34 , 0,...

oltre 4 anni fa | 0

| accettato

Risposto
How can I plot scatterplot in the UIAxes of App Designer
App Designer uses uifigure. I found a way to move the scatterplot from the scatterplot figure to the uifigure. handle = uifigur...

oltre 4 anni fa | 0

| accettato

Risposto
Combine data from 3 tables based on common datetime?
Use innerjoin

oltre 4 anni fa | 0

Risposto
For Loop and if statement
m = [9 6 7 1 7 8 6 2 9 1 2 1 5 7 8 3 8 5 1 2]; a=[]; ...

oltre 4 anni fa | 0

Risposto
How to create a colored, with three equally spaced rows of colors horizontally with a dimension of 6x5x3
If you want the image above to be horizontal: yellow = [1,1,0]; orange = [0.8500,0.3250,0.0980]; pink = [1, 0.5, 0.8]; tci =...

oltre 4 anni fa | 0

Carica altro