已回答
I am new on MATLAB.....How to write this equation in the form of code in MATLAB? I have to find du/dt using euler's method
Please refer the below link (MATLAB Doc) https://in.mathworks.com/help/matlab/math/partial-differential-equations.html

3 years 前 | 0

已回答
How can I establish a logical expression from given truth table using MATLAB?
#For Matrix Multiplication out=A*B+C'*B'; #For Array Multiplication out=A*.B+C'*.B';

3 years 前 | 0

已回答
How to select framework of an image?
You can consider a frame of selection, force remaining pixels to black(0) or white(255), let's suppose data is a gray image- d...

3 years 前 | 0

已回答
How to plot the matrix values in the form of a slice plane?
Please refer the surf plot, and change the plot properties accordingly. https://in.mathworks.com/help/matlab/ref/surf.html

3 years 前 | 0

已回答
Why do I get the error ' Unrecognized function or variable A'?
You have to pass the input arguments to the function. Please refer the following link to understand "How to the call function"...

3 years 前 | 0

已回答
Importing and RGB image to matlab in the form image L(x,y)=[LR(x,y),LG(x,y),LB(x,y)]
LR=L(:,:,1); % First Slice: Red Component LG=L(:,:,2); % Second Slice: Green Component LB=L(:,:,3); % Third Slice: Blue Compon...

3 years 前 | 1

已回答
RGBto XYZ CIE 1931 Code
Here CIE_image=rgb2xyz(RGB_image); Matlab Doc: Here

3 years 前 | 0

| 已接受

已回答
how to save a figure plotted with matlab with best quality in .ppt or .pdf file?
One way: https://in.mathworks.com/help/matlab/creating_plots/save-figure-at-specific-size-and-resolution.html

3 years 前 | 0

已回答
I want to divide every column element . for example 1nd element with 2nd then 2nd with 3rd and so on
#data is a column/row vector data1=circshift(data,[0 -1]); temp=data./data1; #Ignoring last element, as devide present by nex...

3 years 前 | 0

| 已接受

已回答
How can I plot a reverse x-axis on the same graph?
#Convert to strings x=[0 1 2 3 4 3 2 1 0]; y = 2*x; plot(y); data=string(x); set(gca,'xtick',1:length(x),'xticklabel',data...

3 years 前 | 0

| 已接受

已回答
Smoothing a noisy signal
%% how to create a noisy data x = 0:0.1:20; %creating a dummy data y = sin(x); %finding a sine of the variable x n = randn(1,...

3 years 前 | 0

已回答
loading text file in vector columns
May be no file "111.txt" exist in the current working directory. Please check again & confirm? exist('111.txt','file')

3 years 前 | 0

已回答
how to plot different R0 value in single graph
for i=1:length(...) Ro= ..%One data change, which allow to change the Ro, note that it must be an 1D array R=p*b/(b+...

3 years 前 | 0

已回答
Erlang distribution n=50 , m= 5; 6; k= 5; 9
Please set the typical values t=....; m=...; k=....; erlang_dist=t.^(k-1).*exp(-t/m)/(m.^k.*factorial(k-1)); plot(t,erlang...

3 years 前 | 0

已回答
PIXEL counting at grey scaled picture
%Using Histogram (Considering 256 Levels) [counts,binLocations]=imhist(grayImage); pix_counts=sum(counts(200:end)) ## %% 2nd...

3 years 前 | 0

| 已接受

已回答
Object Segmentation using SegCaps
You can implement on any tool as per your expertise. Here is the complete reference in python (Just the reference) Reference Li...

3 years 前 | 0

| 已接受

已回答
Adding sprintf values using a loop
Spec =['A%d ','S%d'];

3 years 前 | 0

| 已接受

已回答
Check numbers in a 5x5 array
Sufficients Hints: #Check all the elements within 1 & 25, use logical statement to avoid loops result=data>=.... & data<=.......

3 years 前 | 0

已回答
How can i put in matrix data into cell array?
Cell array for i=1:length(matrix_data) cell_data{i}=matrix_data; end Detail?

3 years 前 | 2

| 已接受

已回答
how can i name my output and display it?
#Check Pt array size? Use ; for column vector or use traspose in the table data. T=table(ln,rn,Pt','VariableNames',{'From Bus'...

3 years 前 | 1

| 已接受

已回答
Average intensity of pixels
#One Way: Segmentation and useing Mask im_original=read the image considering RGB Image im_binary=imbinarize(rgb2gray(im_origi...

3 years 前 | 0

已回答
How to store data in cell array?
Just traspose the cell array, let's data is a cell array then- new_data=data'

3 years 前 | 0

已回答
Plotting average value with max-min area
c_color=['r','m','y']; for i=3:-1:1 p=Cn_range(i,:); plot(p); area(p,'FaceColor',c_color(i)); hold on; end...

3 years 前 | 0

已回答
How can I store user input
There are multiple ways (Any One) Store the r and c variable data in text file or other files, like excel (see save function) ...

3 years 前 | 0

已回答
I need to plot the following script. But it gives an error.
Fw=1./(cos(w*Hs/Vs_soil));

3 years 前 | 2

已回答
how to extract objects from an image after filling in the objects in the binary image
Original BW image BW_result=bwareafilt(BW,2); % Get the largest 2 max size objects result=~(BW_result.*BW); % Nand Logical Op...

3 years 前 | 0

已回答
How can I find a number from a matrix, which is greater than and closest to 1.
Hints: Use logical indexing Get the data those are greater than 1: mat>1 Subtract 1 from all elements of the matrix - mat-1 G...

3 years 前 | 0

| 已接受

已回答
can someone help me with this code? there is something wrong and I don't know what it's.
Replace all lines axis ([th0 thl -inf inf]); More figure plot (th0:dth:thl, wBD , th0:dth:thl , alBD/100 ,'lineWidth', 2); ...

3 years 前 | 0

已回答
how to plot columns of two matrices against each other?
mat1=... mat2=... for i=1:7 plot(mat1(:,i),mat2(:,i)); hold on; end

3 years 前 | 0

已回答
Matlab Matrix plot from a for-loop
pi_aprox=zeros(1,30); n=6; g2n=zeros(1,30); U_neue=zeros(1,30); g2n(1)=1; for i=1:30 U_neue(i)=n*g2n(i); pi_aprox...

3 years 前 | 0

加载更多