Respondida
Scatter 2D plot with specific colorbar
You can try something like this: imagesc % Just to get something to show axP = get(gca,'position'); % Create axes for colorba...

alrededor de 6 años hace | 0

| aceptada

Respondida
whats is presice compute time in matlab
These fluctuations are "kind of expected", your computer does a lot of other stuff in addition to running matlab which gives the...

más de 6 años hace | 0

Respondida
FFT of sine wave shows unexpected spectral widening
Try this: subplot(1,2,1) plot(templeS) axis tight ax = axis; axis([[-30 0]+ax(2) ax(3:4)]) subplot(1,2,2) axis tight ...

más de 6 años hace | 0

| aceptada

Respondida
Add n days to juliandate
It seems to work just fine as far as I can see. When I compare: jd0 = juliandate(2020, 2, 14); jd0p100 =juliandate(2020, 2, 14...

más de 6 años hace | 0

Respondida
How to find the best parameters to fit damped oscillations curves
If you plot your data you should be able to see that the zero-crossings are increasingly further apart. That means that your mo...

más de 6 años hace | 1

Respondida
How can I improve code efficiency?
First step of improving code is to run the scripts and functions with the profiler on (seel documentation and help for profile) ...

más de 6 años hace | 0

Respondida
Some question about a special code for solving an ODE system by Runge-Kutta method
Since u1 and u2 depends on p1, p2 and p3, that in turn will depend on time, you have 6 coupled ODEs. The best(?) way to solve th...

más de 6 años hace | 0

| aceptada

Respondida
Curve fitting of a custom equation with a predefined value
For this type of problems I typically use the basic optimization-functions of matlab - either fminsearch or lsqnonlin depending ...

más de 6 años hace | 0

| aceptada

Respondida
how to get eigenvalues of a function matrix?
To calculate the eigenvalues of H you have to chose, either to use your implementation where H is a handle to a function returni...

más de 6 años hace | 0

| aceptada

Respondida
How do I create a new folder each time I run a code?
This is easily solved: dirname = fullfile(path_2_root_dir,sprintf('NewFolder-%s',datestr(now,'yyyymmdd-HHMMSS'))); mkdir(dirna...

más de 6 años hace | 0

Respondida
Images don't show properly with imshow after certain calculation
When you do things like this the errors are always (in my experience) in different normalizations and type-castings. To work the...

más de 6 años hace | 0

| aceptada

Respondida
Press " " to rename 4 instances of "VariableName1" to "VariableName2"
That ought to be the return key... HTH

más de 6 años hace | 0

Respondida
How to compute SVD of a matrix without using in-build SVD command?
So this is a homework task, right? (Unless you come up with a good reason this is the case everyone have to come to this conclus...

más de 6 años hace | 0

Respondida
analytical solution of ODEs
This should be done thisly: syms r syms T(r) dTdr = diff(T) d2Tdr2 = diff(T,2) T = dsolve(1*d2T+((1/r)*dT) ==1,T(0.005)==20...

más de 6 años hace | 0

Respondida
How to graphically/interactively select region of interest from 3D point cloud data
In newer versions of matlab there seems to be just such a feature, see: ROI.CUBOID For older versions of matlab (I vaguely rec...

más de 6 años hace | 3

| aceptada

Respondida
Obtaining a equation in two variables (x and y) from a set of data points
What you should do depends on your objective. If you very explicitly want a function you could use spap2 (and perhaps some of it...

más de 6 años hace | 1

| aceptada

Respondida
Hello, we have received a Matlab code in school and the assignment is to explain what it means. I wonder if anybody could take us through the code and explain it?
At the matlab command-line prompt type: dpstop in nameiofscript where nameiofscript is the name of the script-file. Then you r...

más de 6 años hace | 0

Respondida
How to obtain CDF from large dataset?
Have a look at the help and documentation of the function ksdensity - that is one way to do this with the least amount of assump...

más de 6 años hace | 0

Respondida
Difference in frequency domain between mp3 and wav
There are some small differences. You should also try to compare the spectrograms of the two signals, see the help for spectrogr...

más de 6 años hace | 0

Respondida
How to edit matlab saved file?
I think something like this should work: filename2edit = 'something.mat'; load(filename2edit,'X2change') X2change(3) = 12; s...

más de 6 años hace | 1

Respondida
I would like to plot Histogram and relative frequencies from a given dada.txt. I already plot time series plot for the given data. KIndly help me to plot histogram and relative freqs.
Have a good look at the help and documentation of histogram function. It should let you solve this task easily. HTH

más de 6 años hace | 0

Respondida
Solving 4th order ode problem
In general you convert a high-order ODE to a set of first order ODEs like in this example below (I will use a simple equation of...

más de 6 años hace | 0

Respondida
partial differentating a matrix by a vector
Have a look at the help and documentation for jacobian. HTH

más de 6 años hace | 0

| aceptada

Respondida
Is it possible to plot a 3D graph with non numerical values?
The simplest method might be to map your classes to some integer range and then use the standard plotting functions. In your cas...

más de 6 años hace | 0

Respondida
How to display figure in full-screen mode programmatically and save as a high resolution image?
To save as high-resolution, I regularly use: print('-depsc2','-painters','J.eps') If you desperately want the image as a png-i...

más de 6 años hace | 1

Respondida
How to store 2D variables in matrix
For the storing the point coordinates you might look at either cell-arrays: r1 = [1,2,3]; r2 = [3,2,5]; r3 = [4.5,pi,1,5]; %...

más de 6 años hace | 1

Respondida
Problem getting number of ticks and labels to work properly
Do you get your xticks at the even years with the xticklabels for the first 6 years? You can at least check the x-tick values w...

más de 6 años hace | 0

Respondida
De-resolution of Dicom Image
So you problem is that you cannot figure out how to save a file to a new same-name file in another directory? If so something l...

más de 6 años hace | 0

Respondida
A switch case statement that will help me to either run codeS in Windows or linux, based on whichever OS it is
Have a look at the commands: computer, ispc, insunix, ismac. HTH

más de 6 años hace | 0

Respondida
zoom plot into plot
Maybe this file exchange contribution does what you need: zoomplot Or any of these: on-figure-magnifier, maginset, interactiv...

más de 6 años hace | 0

Cargar más