Réponse apportée
Replace even element with zero
"I am trying to replace even elements in my matrix with zero like below:" a(2:2:end)=0 But the example is different ?? a = [...

plus de 5 ans il y a | 0

Réponse apportée
Add interpolated data at a specific location in the main array.
This way? array_new=[array_data(1:28),int_data,array_data(29:end)]

plus de 5 ans il y a | 1

Réponse apportée
Error using .* Matrix dimensions must agree. Error in eff_vs_length (line 20) Ty1=1-exp((-U.*AsurY)./(m.*C)) >>
Please define h,Kp and Kg h=...? Kp=..? Kg=....? % Assumning all are scalar % L=9.512; Y=0:9.512; m=0.11; C=1007; ...

plus de 5 ans il y a | 1

Réponse apportée
How to plot data contains only ones?
user_number=20; test_data=ones(1,user_number); plot(1:user_number,test_data); And yes, you definitely find the straight line ...

plus de 5 ans il y a | 1

Réponse apportée
Looping with MATLAB Tables
Steps: Load files Link Save the results v_ms,oat_k,bhp in array or cell array as per result data type load tables v_ms(i)=z...

plus de 5 ans il y a | 1

| A accepté

Réponse apportée
why error is coming "undefined function or variable"?
There is no such "bit3xor" inbuilt function in MATLAB. It might be custom function, if so please keep the bit3xor.m file in the ...

plus de 5 ans il y a | 0

Réponse apportée
Read a subset of variables in Data Store
subset=[...]; % define for i=1:length(subset) filename=['d',num2str(subset(i))]; % Load the data one by one as per subset num...

plus de 5 ans il y a | 0

Réponse apportée
hot to plot data on right side of y-axis?
T=[29.164 30.256 31.186 32.237 33.127 34.137 35.148 37.129 36.119 35.148 34.137 33.127] I=[116 207 414 611 909 1009 951 909 805...

plus de 5 ans il y a | 1

| A accepté

Réponse apportée
Audio segmentation in Matalb
Load the file with xlsread ('filename'), once loaded to the MATLAB workspace, you can see the dimentions of the file as matrix d...

plus de 5 ans il y a | 0

Réponse apportée
why the following code do this to make binary a image
There are several methods to obtain the resulting image as a logical or binary image. That does not mean, why does it not follow...

plus de 5 ans il y a | 1

Réponse apportée
Regarding usage of imoverlay
See the Example: data_bw=imbinarize(imread('eight.png')); [r,c]=size(data_bw); data_rgb=imresize(imread('B.jpeg'),[r,c]); r...

plus de 5 ans il y a | 0

Réponse apportée
How do I get a for loop to move through values in an array?
"To do this I created some loops that should go through each value in an array and compare it with the same positioned value in ...

plus de 5 ans il y a | 0

| A accepté

Réponse apportée
Different color for every point - Scatter3
"It would be tremendously helpful if I could have every point have a different color, it doesn't matter which. It would help me ...

plus de 5 ans il y a | 0

Réponse apportée
How I segment this image?
Steps: Read the image Convert to gray Apply Gamma Scaling (Which helps to boost Higher pixels and supress lower values pixels...

plus de 5 ans il y a | 1

| A accepté

Réponse apportée
Legend being occupied by background spectrogram
Questions 1: You have only one legened in the provided code legend({'A','B'},'FontSize',15,'Location','northwest') Question ...

plus de 5 ans il y a | 0

Réponse apportée
Angles to arrow representation
data=xlsread('New Microsoft Excel Worksheet.xlsx'); l=0.5; % Length of the arrow for i=1:6 for j=1:6 angle=data(i,j...

plus de 5 ans il y a | 0

| A accepté

Réponse apportée
why i'm getting this error?
Error using DAGNetwork/calculatePredict>predictBatch (line 151) Incorrect input size. The input images must have a size of [224...

plus de 5 ans il y a | 0

Réponse apportée
plotting in matlab using implicit
"but i only want curves and their intersections" Try this way, you will get edge boundary only fimplicit3(eqn1,[-0.008 0.001 -...

plus de 5 ans il y a | 0

Réponse apportée
How to find the index of a specific entry in an array
idx=find(array_data==particular_entry)

plus de 5 ans il y a | 0

| A accepté

Réponse apportée
How to compare future vector value to a past one in a while loop
How to compare future vector value to a past one in a while loop In such case you may use cell array to store the invidivual ar...

plus de 5 ans il y a | 0

Réponse apportée
Delete specific numbers from cell array
result=cell(1,20); for i=1:20 data=p2(:,i); data(data==0)=[]; result{i}=data; end result The result is a cell a...

plus de 5 ans il y a | 1

| A accepté

Réponse apportée
Matrix dimensions must agree.
May be both image are not having equal size, please modify. As there are elementwise multiplication in g and h lines. girl = im...

plus de 5 ans il y a | 1

| A accepté

Réponse apportée
How can i do the related analysis in matlab
First Section: If I undestand the question correctly, you are looking for compare multiple arrays, is this? a1= [0 0 0 1 0 1]; ...

plus de 5 ans il y a | 0

| A accepté

Réponse apportée
How to use the edge function to extract a curve from the photo, and then draw this curve on the coordinate system, and finally smooth the curve.
data=imbinarize(imread('image.jpeg')); result=edge(data); figure,imshow(result); [r,c]=find(result==1); figure,plot(c,r,'.')...

plus de 5 ans il y a | 0

| A accepté

Réponse apportée
Fourier transform for image data set
"This code gives me an error (MAP must be a m x 3 array) in (I = rgb2gray(I);) because of the size of (I)." May be you are usin...

plus de 5 ans il y a | 0

Réponse apportée
Is it possible to put a for loop outside of a function?
for loop function call % Define the function as different script end #Hope I understand your question

presque 6 ans il y a | 0

Réponse apportée
How to fix this error?
What this error means? Index exceeds the number of array elements (9). Example: Suppose, an array example A=[2 3 4 5 6 7 8]; ...

presque 6 ans il y a | 0

| A accepté

Réponse apportée
How to remove Horizontal and vertical lines only from an Image?
Sir I saw the image on telegram, hope I understand the question, One way is- Steps: Convert RGB to Gray Gray Image to Binary ...

presque 6 ans il y a | 1

Réponse apportée
The values of the "a" and "c" properties must be matrices with the same number of columns.
Error clearly stated that A and c state-space matrices to be same number of columns to avoid this error. A=[-0.0895 -0.286 0;-...

presque 6 ans il y a | 0

Réponse apportée
Trying to colour a circle but not all only one qudrant want to colour
viscircles([0,0],1); hold on; alpha=linspace(0,90)/180*pi; % Manage Angles ^^ here Quadrant angles patch([0 cos(alpha) 0], [...

presque 6 ans il y a | 0

Charger plus