Community Profile

Ivan van der Kroon


Twente University

Attivo dal 2011

Followers: 0   Following: 0

Contatto

Statistiche

All
  • Knowledgeable Level 3
  • First Submission
  • 3 Month Streak
  • Knowledgeable Level 2
  • First Answer

Visualizza badge

Feeds

Visto da

Domanda


How to avoid Excel using Matlab
Hey, I am about to finish my studies and with it, probably, my Matlab usage, as most employers favor Excel. I was looking for me...

oltre 12 anni fa | 1 risposta | 0

1

risposta

Risposto
programming a PDE in Matlab
You already have written it in a ode-form, i.e. first temporal derivative on LHS. The RHS only needs the correct implementation ...

oltre 12 anni fa | 0

Risposto
Problem with matlab
Your function should assign values to m and X depending on the value of t. Note that t in the solver can take any value in your ...

oltre 12 anni fa | 1

Risposto
Using an iterative method with scalar functions/function handles (help me fix this code)
In the doc of fzero 'Find root of continuous function of one variable', which you clearly need here. Doc of minres 'find a mi...

quasi 13 anni fa | 0

Risposto
How can I select between two solutions?
This is a standard quadratic formula, put it in the form a*y^2+b*y+c=0 and the solutions are y1=(-b+sqrt(b^2-4*a*c)...

quasi 13 anni fa | 0

Risposto
How to obtain accurate fast fourier transformation
For your frequencies, you make a mistake in your frequency array fs=Datapoints/Length; f = fs/2*linspace(0,1,NFFT/2+1); ...

quasi 13 anni fa | 1

| accettato

Risposto
Reading numbers from general text-file
This is not a very nice solution, but it worked for me fid=fopen('test.txt'); C = textscan(fid, '%s'); C=C{1}; a=[]; fo...

quasi 13 anni fa | 1

Risposto
Simulation of charged particle in matlab
You probably want to have something like fun=@(t,x) [x(4:6);cross(x(4:6),q/m*B)]; t=linspace(0,tend,1e3); [t,x]=ode45(fun...

quasi 13 anni fa | 1

Risposto
How can I convert a system with delay from continuous to discrete and from discrete to continuous and the result be the same?
In that case the sample time in tf should be an integer times the sample time in c2d. You can try it for arbitrary a and integer...

quasi 13 anni fa | 1

Risposto
nonlinear least squares fit
t is a row-vector while data is a column-vector. Change it to t=(1:n)'; Btw, I got x= 0.0012 0.1046 -7...

quasi 13 anni fa | 0

Risposto
Double Prime
xlabel('test''''') gives you an xlabel as test'' You need double primes in strings for a single prime.

quasi 13 anni fa | 0

Risposto
mldivide error
./ for right and .\ for left division

quasi 13 anni fa | 0

Risposto
Replace zeros with NaN's - when there are already NaN's in the matrix?
Change to double first: F=double(F); F(find(~F))=NaN; Just curious; why would you need this?

quasi 13 anni fa | 0

Risposto
how can I convert a string to an expression which "symvar" can search for identifiers?
insertfunction='cos(pi*x - beta1)' >> symvar(insertfunction) ans = 'beta1' 'x'

quasi 13 anni fa | 1

Risposto
Out of memory using mrdivide
Short about inv(B); it has 191*2+1 diagonals (36288/189=192, but this is for one of the triangles and includes the main diagonal...

quasi 13 anni fa | 0

Risposto
How to replace the elements of a matrix using the conditions if,else?
Just implement it for multiple matrices using element multplication: Logical=(L>0.5).*(M==0).*(N<0.5); T=-Logical+(M+1)....

quasi 13 anni fa | 0

Risposto
How to replace the elements of a matrix using the conditions if,else?
You don;t need the if-statment here but only the logicals. This gives you a matrix with ones where X is larger than 0.5 and zero...

quasi 13 anni fa | 1

Risposto
Optimal arrangement of a small vector within a lager vector
Allow me to define: N=length(b); M=length(a); Q=3;%number if placements p0=ones(Q,1);%starting vector for placements w0...

quasi 13 anni fa | 1

Risposto
Out of memory using mrdivide
Some follow-ups: a) Where do you need this for? Your result will lose much of its sparcity. Maybe if you post your entire pro...

quasi 13 anni fa | 1

Risposto
How to create sounds with specific characteristics?
A window can be anything going from zero to unity. In this case it should reach unity after 5ms from the start. You should know ...

quasi 13 anni fa | 0

| accettato

Risposto
Discrete Fourier Transform of large data sets
Is the size of the result a problem too? Otherwise you can add zeros to a segment perform the transform and in the end take the ...

quasi 13 anni fa | 0

| accettato

Risposto
Out of memory using mrdivide
I agree with Jan; if you have the same number of non-zero elements you probably filled the main diagonal. In that case spdiags w...

quasi 13 anni fa | 0

| accettato

Risposto
Why do i have to take the abs when using fft and ifft?
Walter means that discrete Fourier transforms are not exactly as what one would expect from their continuous counterparts. You c...

quasi 13 anni fa | 0

| accettato

Risposto
How do I reset axis ticks to normal after I modify them?
You can use set(gca,'XTickLabel',xdate) where xdate is your x-axis data. With datetick you're just changing the labels,...

quasi 13 anni fa | 0

Risposto
row-echelon matrix form (not reduced)
With rref you will produce the reduced row echelon form, see doc rref But a non-reduced form is not unique. See for ins...

quasi 13 anni fa | 1

Risposto
How do I find the boundaries of a value in a matrix?
[rows,cols]=find(I==8) rows = 3 2 3 4 2 1 2 cols = 2 3 ...

quasi 13 anni fa | 2

Risposto
How to plot frequency response in matlab
you could get familiar with the wintool and wvtool gui's. I think these tools are really straight forward. Good luck!

quasi 13 anni fa | 0

Risposto
How to make a 0.001 difference ?
a=1:100; b=sort([a a+0.001]);

quasi 13 anni fa | 0

| accettato

Risposto
Kolmogorov
I know that CDF has to be of size Nx2, but you want to have M of those in your for-loop. So you have to use CDF(:,:,j), which is...

quasi 13 anni fa | 0

Risposto
Strings
Depending on your os the slashes could be different. For instance on opensuse I have to use / path='temp/matlab.mat'; sa...

quasi 13 anni fa | 0

Carica altro