Réponse apportée
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(...

environ 8 ans il y a | 1

Réponse apportée
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'))

environ 8 ans il y a | 1

Réponse apportée
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. ...

environ 8 ans il y a | 1

Réponse apportée
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(...

environ 8 ans il y a | 2

Réponse apportée
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 ...

environ 8 ans il y a | 2

Réponse apportée
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 ...

environ 8 ans il y a | 0

Réponse apportée
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...

environ 8 ans il y a | 5

| A accepté

Réponse apportée
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*...

environ 8 ans il y a | 2

Réponse apportée
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...

environ 8 ans il y a | 1

A soumis


spatialcorr3(varargin)
Spatial correlation having timesteps

environ 8 ans il y a | 1 téléchargement |

4.5 / 5

A soumis


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

environ 8 ans il y a | 1 téléchargement |

0.0 / 5

A soumis


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

environ 8 ans il y a | 1 téléchargement |

0.0 / 5

Réponse apportée
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...

environ 8 ans il y a | 1

Réponse apportée
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...

environ 8 ans il y a | 1

Réponse apportée
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...

environ 8 ans il y a | 2

Réponse apportée
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)=...

environ 8 ans il y a | 1

| A accepté

Réponse apportée
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

environ 8 ans il y a | 2

Réponse apportée
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=...

environ 8 ans il y a | 1

| A accepté

Réponse apportée
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...

environ 8 ans il y a | 0

Réponse apportée
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 ...

environ 8 ans il y a | 0

| A accepté

Réponse apportée
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); ...

environ 8 ans il y a | 0

Réponse apportée
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...

environ 8 ans il y a | 0

| A accepté

Réponse apportée
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); ...

environ 8 ans il y a | 0

| A accepté

Réponse apportée
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...

environ 8 ans il y a | 2

Réponse apportée
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...

environ 8 ans il y a | 1

Réponse apportée
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...

environ 8 ans il y a | 2

Réponse apportée
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...

environ 8 ans il y a | 1

Réponse apportée
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...

environ 8 ans il y a | 1

Réponse apportée
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

environ 8 ans il y a | 1

| A accepté

Réponse apportée
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...

environ 8 ans il y a | 1

Charger plus