Respondida
How to plot a graph for one set of data against two y axes, one a function of the other?
You can use plotyy predefined function to plot on 2 Y axis. x=(0:10:300); figure() yyaxis left plot(x,randi(...

alrededor de 8 años hace | 1

Respondida
finding the max values
arr= [ 1 9 4 7 38 8] k= 4; [arr1 b]=sort(arr,'descend'); b1=b(1:k) arr(sort(b1,'ascend'))

alrededor de 8 años hace | 1

Respondida
Print point numbers with velocities
I haven't get the your question completely. Upto my understanding, you are trying to plot something with respect to something. ...

alrededor de 8 años hace | 1

Respondida
Write A Matlab Function of a matrix
A=randi(25,25,100); ss=func(A,10,20) function S = func(A,m,n) B=A(1:m,1:n); C=B(:); id=unique(C) S=sort(...

alrededor de 8 años hace | 2

Respondida
Spatial Correlation between two variables
Here you can get timesaving toolbox in which spatialcorr3 is there. You can use this function to get the spatial correlation of ...

alrededor de 8 años hace | 2

Respondida
Matlab Function fibonacci series
fibon(41) function S = fibon(N) S(1)=1; S(2)=1; for ii=1:N-2 S(ii+2)=S(ii+1)+S(ii) end end If ...

alrededor de 8 años hace | 0

Respondida
How to plot 3 y axis or more in a single graph?
Use this function from the file exchange <https://in.mathworks.com/matlabcentral/fileexchange/9016-addaxis> plot((1:5...

alrededor de 8 años hace | 5

| aceptada

Respondida
M(t)=M(0) × e^(-t/T) + S × T × (1 - e^(-t/T)) How can I plot (T,M) graphic in MATLAB?
According to the equation written in the image, clc clear m_zero=5; S=25; k=2; for t=1:500 as(t)=m_zero*...

alrededor de 8 años hace | 2

Respondida
problem with vectors and dimensions
You are getting an error in this line R=R+(a(i)*Ck(w(i):p(i))); The dimension of R is 1*6 and dimension of *(a(i)*Ck(w(i...

alrededor de 8 años hace | 1

Enviada


spatialcorr3(varargin)
Spatial correlation having timesteps

alrededor de 8 años hace | 1 descarga |

4.5 / 5

Enviada


spatialcorr2( varargin)
Spatial Correlation of 2D datasets (without having timesteps)

alrededor de 8 años hace | 1 descarga |

0.0 / 5

Enviada


Scatter(varargin)
Plot the fitting line with statistics on Scatter plot

alrededor de 8 años hace | 1 descarga |

0.0 / 5

Respondida
cell contents assignment to a non-cell array object
C{1}=[0 .1 0]; C{2}=[1 0 .10]; K{1}=[.001 .3 0]; The errors are in these above codes. You already have defined C in doub...

alrededor de 8 años hace | 1

Respondida
How to plot 3 parameters on same axis having different values
You can use plotyy function yyaxis left plot(x,blt,'r','linewidth',1.5) yyaxis right plot(x,tchp,'b','linewid...

alrededor de 8 años hace | 1

Respondida
how to break and rezero x-axis
You can break your x axis by using this function from file exchange <https://in.mathworks.com/matlabcentral/fileexchange/4290...

alrededor de 8 años hace | 2

Respondida
How to group variables in a same cluster ?
A=[1 2; 2 4; 3 4; 4 1; 5 1; 6 4; 7 4; 8 2; 9 1; 10 1] id=unique(A(:,2)) for ii=1:length(id) iid{ii}=A(find(A(:,2)=...

alrededor de 8 años hace | 1

| aceptada

Respondida
Normalizing data in y-axis to become 0-100% instead of frequency
Y_axis_data=randi(25,1,2000); Y_axis_normalize=(Y_axis_data/(numel(Y_axis_data)))*100

alrededor de 8 años hace | 2

Respondida
how to convert decimal degree to utm using loops ?
Firstly do the meshgrid of lon lat. [lon_new,lat_new]=meshgrid(lon,lat); for i=1:size(lon_new,1) for ii=...

alrededor de 8 años hace | 1

| aceptada

Respondida
Write the function sideOf which accepts one side of a right-angle triangle, a or b, and the hypotenuse c as input arguments and outputs the other side b or a.
sideOf(3,5) function b=sideOf(a,c) b=sqrt(c^2 - a^2); end Just one line function. Use the above script...

alrededor de 8 años hace | 0

Respondida
Index exceeds matrix dimensions problem with this code below :-
c =[1 1 1 6; 2 4 2 16; -1 5 -4 -3] N = size(c,1) M=size(c,2) tol= 1e-6; for ii=1:M-1 ii ...

alrededor de 8 años hace | 0

| aceptada

Respondida
How to save all the results from the loop into a vector
For saving the results in vector form after completing every loop, then just use A(i,:) example: A=randi(25,10,20); ...

alrededor de 8 años hace | 0

Respondida
Why do I get markers on the second axis and how do I stop them?
You can do use the same marker properties. This is just an example to plot the similar using the same program with using differ...

alrededor de 8 años hace | 0

| aceptada

Respondida
Contourf colour doesn't display correct values.
I have tried to plot the similar contour using your program and I am getting the correct contour. P=randi(60,20,30); ...

alrededor de 8 años hace | 0

| aceptada

Respondida
Random number between 0 and the value of another variable
As per my knowledge, there is no any predefined function which do your work. You can write the script as well or you can write f...

alrededor de 8 años hace | 2

Respondida
what does it mean by [ ] in the following code
It returns a column vector containing the smallest element in each row along third dimension. Read this for more details <htt...

alrededor de 8 años hace | 1

Respondida
How to plot boxplot side by side of the two data set?
Read this thread to get on the result. <https://in.mathworks.com/matlabcentral/answers/289642-multiple-boxplots-on-same-figur...

alrededor de 8 años hace | 2

Respondida
Is it possible to save images into a single pdf with MATLAB without margin?
My suggestion is to save in tiff or png format to control the resolution of image. print('my_image','-dtiff','-r150') R...

alrededor de 8 años hace | 1

Respondida
BMI graph, 3 variables on 2D graph
If you want to use 3 variables on 2D plot, then you can use contour or contourf or surf or surfc. clc clear lat=(1:10...

alrededor de 8 años hace | 1

Respondida
Make r a 1x5 vector using rand. Find the elements that have values <0.5 and set those values to 0 (use find).
Use any of these two codes will get you to the desired result. A=rand(1,5) A(A<0.5)=0 or A(find(A<0.5))=0

alrededor de 8 años hace | 1

| aceptada

Respondida
How to exclude files from a loop
If you are using F=dir('*.nc') (.nc is the file extension or it can be any file extension) to read all 70 files, then you can...

alrededor de 8 años hace | 1

Cargar más