Beantwortet
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(...

mehr als 8 Jahre vor | 1

Beantwortet
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'))

mehr als 8 Jahre vor | 1

Beantwortet
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. ...

mehr als 8 Jahre vor | 1

Beantwortet
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(...

mehr als 8 Jahre vor | 2

Beantwortet
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 ...

mehr als 8 Jahre vor | 2

Beantwortet
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 ...

mehr als 8 Jahre vor | 0

Beantwortet
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...

mehr als 8 Jahre vor | 5

| akzeptiert

Beantwortet
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*...

mehr als 8 Jahre vor | 2

Beantwortet
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...

mehr als 8 Jahre vor | 1

Gesendet


spatialcorr3(varargin)
Spatial correlation having timesteps

mehr als 8 Jahre vor | 1 Download |

4.5 / 5

Gesendet


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

mehr als 8 Jahre vor | 1 Download |

0.0 / 5

Gesendet


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

mehr als 8 Jahre vor | 1 Download |

0.0 / 5

Beantwortet
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...

mehr als 8 Jahre vor | 1

Beantwortet
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...

mehr als 8 Jahre vor | 1

Beantwortet
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...

mehr als 8 Jahre vor | 2

Beantwortet
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)=...

mehr als 8 Jahre vor | 1

| akzeptiert

Beantwortet
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

mehr als 8 Jahre vor | 2

Beantwortet
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=...

mehr als 8 Jahre vor | 1

| akzeptiert

Beantwortet
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...

mehr als 8 Jahre vor | 0

Beantwortet
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 ...

mehr als 8 Jahre vor | 0

| akzeptiert

Beantwortet
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); ...

mehr als 8 Jahre vor | 0

Beantwortet
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...

mehr als 8 Jahre vor | 0

| akzeptiert

Beantwortet
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); ...

mehr als 8 Jahre vor | 0

| akzeptiert

Beantwortet
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...

mehr als 8 Jahre vor | 2

Beantwortet
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...

mehr als 8 Jahre vor | 1

Beantwortet
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...

mehr als 8 Jahre vor | 2

Beantwortet
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...

mehr als 8 Jahre vor | 1

Beantwortet
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...

mehr als 8 Jahre vor | 1

Beantwortet
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

mehr als 8 Jahre vor | 1

| akzeptiert

Beantwortet
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...

mehr als 8 Jahre vor | 1

Mehr laden