Feeds
질문
how to set proper constraints for Nonlinear Optimisation solvers
Hi, I am looking forward to minimize the following function: function f = alfafun2(alfa) global S H LR; f=10.^(log...
12년 초과 전 | 답변 수: 1 | 0
1
답변답변 있음
How can i graph the following matricie in Matlab?
Code: %At firtst you have to define your coordinate system like x=0:0.1:10; y=0:0.1:10; % then create the ...
How can i graph the following matricie in Matlab?
Code: %At firtst you have to define your coordinate system like x=0:0.1:10; y=0:0.1:10; % then create the ...
12년 초과 전 | 0
답변 있음
Matlab Error (Z must be a matrix, not a scalar or vector.)?
ah you mixed up the capitals i guess. use ur meshgrid for your z like z = 2*sin(X.*Y); mesh(X,Y,z)
Matlab Error (Z must be a matrix, not a scalar or vector.)?
ah you mixed up the capitals i guess. use ur meshgrid for your z like z = 2*sin(X.*Y); mesh(X,Y,z)
12년 초과 전 | 4
답변 있음
How to make a signal more flat ?
you could use SMOOTH it provides a moving average, that makes a signal more continuous(flat)
How to make a signal more flat ?
you could use SMOOTH it provides a moving average, that makes a signal more continuous(flat)
12년 초과 전 | 0
답변 있음
how can I Replace outliers with median of previous observations?
something like this should work yourthreshold = 10; Data(Data>yourthreshold) = median(median(Data)); this replaces ...
how can I Replace outliers with median of previous observations?
something like this should work yourthreshold = 10; Data(Data>yourthreshold) = median(median(Data)); this replaces ...
12년 초과 전 | 0
답변 있음
mManipulating from particular column
Something like this: [n,~] = size(Data); sgene = 'u'; %searched letter referencepos = 1; %position of the Row in th...
mManipulating from particular column
Something like this: [n,~] = size(Data); sgene = 'u'; %searched letter referencepos = 1; %position of the Row in th...
12년 초과 전 | 0
| 수락됨
답변 있음
Question on Creating a simple MATLAB Loop
The simplest form of a loop is Result = []; PLACE THE INITIAL AND CONSTANTS PARAMETERS HERE for i = 1 : x 1.PL...
Question on Creating a simple MATLAB Loop
The simplest form of a loop is Result = []; PLACE THE INITIAL AND CONSTANTS PARAMETERS HERE for i = 1 : x 1.PL...
12년 초과 전 | 0
| 수락됨
답변 있음
calculate mean value for each hour of the day from a time series
for example like this: t = yourstartdate; dt = 1/24; while t < yourenddate datatmp = mean(data(Tarray ...
calculate mean value for each hour of the day from a time series
for example like this: t = yourstartdate; dt = 1/24; while t < yourenddate datatmp = mean(data(Tarray ...
12년 초과 전 | 0
답변 있음
In a pcolor plot, how do I make values with 0 blank or set the color scheme to a set range?
The easiest way to go is to turn all zeros into NaN's (not a number) like Data(Data==0)=NaN; Then they dont appear in the ...
In a pcolor plot, how do I make values with 0 blank or set the color scheme to a set range?
The easiest way to go is to turn all zeros into NaN's (not a number) like Data(Data==0)=NaN; Then they dont appear in the ...
12년 초과 전 | 2
| 수락됨
답변 있음
Reading value from text file for every 10ms?
hi. Use the following command for i = 1 : xx x = dlmread(filename, delimiter); pause(0.001); end
Reading value from text file for every 10ms?
hi. Use the following command for i = 1 : xx x = dlmread(filename, delimiter); pause(0.001); end
12년 초과 전 | 0
답변 있음
Erase all the rows that contain NaN
hi, try this [n,~]=size(R) R_new = []; for i = 1 : n R_tmp = R(i,:); if length(find(isnan(R_tmp)) ~= len...
Erase all the rows that contain NaN
hi, try this [n,~]=size(R) R_new = []; for i = 1 : n R_tmp = R(i,:); if length(find(isnan(R_tmp)) ~= len...
12년 초과 전 | 0
답변 있음
How to take the time t of ode to a new variable?
hi, so as far as i understood you want to minimize the function. So what wou need to do is using the matlab fundtion fminsearc...
How to take the time t of ode to a new variable?
hi, so as far as i understood you want to minimize the function. So what wou need to do is using the matlab fundtion fminsearc...
12년 초과 전 | 0
답변 있음
setting 'match figure screen size' for copy options to a figure throgh command prompt
you can set the figure properties to screen size (see <http://www.mathworks.fr/help/techdoc/ref/figure.html> ->Example)
setting 'match figure screen size' for copy options to a figure throgh command prompt
you can set the figure properties to screen size (see <http://www.mathworks.fr/help/techdoc/ref/figure.html> ->Example)
12년 초과 전 | 0
답변 있음
Matlab Circular Intensity Plot
hi. So the easiest way to do this is by using the function <http://www.mathworks.com/matlabcentral/fileexchange/13200> you...
Matlab Circular Intensity Plot
hi. So the easiest way to do this is by using the function <http://www.mathworks.com/matlabcentral/fileexchange/13200> you...
12년 초과 전 | 1
질문
How can the least square optimizer LSQNONLIN be well conditiond?
Hi, i am doing a least square optimasation with LSQNONLIN. The problem is that at a certain point I always get comlex values...
12년 초과 전 | 답변 수: 1 | 0
1
답변질문
surf plot behaves strange!
Hi, i generate a surface with surf. The problem is, that the coloring does not match the actual Data. The Data is shown b...
12년 초과 전 | 답변 수: 2 | 0
2
답변질문
set default properties ERROR
Hi, i face the following problems to which i could not find any solution yet. However i think, they are connected: 1. the c...
12년 초과 전 | 답변 수: 1 | 1