A répondu
how to run principal component analysis in a 3D matrix
You can reshape the matrix to 2D and then when you get results convert it back to the orginal dimensions if needed Reshape arr...

plus d'un an il y a | 0

| A accepté

A répondu
How do I make a heat/color map from individual data points?
You can interpolate between the points using gridded data interpolation: Interpolate 2-D or 3-D scattered data - MATLAB griddata...

plus d'un an il y a | 1

| A accepté

A répondu
Copy and paste from MATLAB to Excel?
check the variable preferences preferences Variables and see if "." is selected for number handling See this previous ques...

plus d'un an il y a | 0

| A accepté

A répondu
X,Y cordinates in a Matrix
Loop through your points like this, although I see XY is probably very long! A=zeros(3,3); disp(A) B=[1 1 1; 1 3 3]; fo...

plus d'un an il y a | 0

| A accepté

A répondu
How can I assign the same value to a repeating number?
(1) Not sure why "alocados" is just a random order of "datos" but you can do this any time, before or after Prb is assigned righ...

plus d'un an il y a | 0

| A accepté

A répondu
eig versus svd functions to calculate eigenvalues of complex matrix
I saw an answer Student in stackexchange that says eigenvalues and singular values coincide for a matrix that is real symmetric ...

plus d'un an il y a | 0

A répondu
Stacked bar graph with repeating datetime
You need to reorder your data into a matrix with shape "Number of Unique Dates" by "Maximum Measurements on Any Date" Something...

plus d'un an il y a | 1

A répondu
Help me understand!
Equation 3 is a 2nd order system p''=..., the RK3 is given for 1st order p'=...(see it's first difference ) =..) See for exampl...

plus d'un an il y a | 1

| A accepté

A répondu
How to deal with Index exceeds the number of array elements??
You could pad the missing data with 0 or nan. Anyway if you want to ignore the incomplete cycle just check out-of-bounds and co...

plus d'un an il y a | 0

| A accepté

A répondu
How to plot heatmaps inside a table?
Maybe just have different axis for each radar. There are a few ways, but tiledlayout is easiest: heatvals = rand(4,40); % r...

plus d'un an il y a | 0

| A accepté

A répondu
Lookup values in other table that has a range of values
Something like this would add the gamma variable to your first table, BUT it's matching to nearest gamma rophole12.gamma = inte...

plus d'un an il y a | 0

| A accepté

A répondu
Three dimensional averages?
You can specify the dimension of averaging: Average or mean value of array - MATLAB mean (mathworks.com) M = mean(A,dim) M = m...

plus d'un an il y a | 0

| A accepté

A répondu
How to fit multiple curves to histogram subpopulations?
You could fit a distribution to the histrogram using histfit or fitdist, then identify the number of modes or peaks, N. Then fi...

plus d'un an il y a | 1

A répondu
how is keep the output values in program?
you can use save and load, here is a quick example: % run once, save results x = 1; y = x+1; save('case1.mat') % modify a...

plus d'un an il y a | 0

A répondu
Calculate area from a signal
You can use trapezoidal rule: see trapz: Trapezoidal numerical integration - MATLAB trapz (mathworks.com) area = trapz(x,y) % i...

plus d'un an il y a | 0

| A accepté

A répondu
Phantom cine format and Photron mraw
I don't think there is a built in method, but using fread you can open mraw format. I used this one in the past: Reader class f...

plus d'un an il y a | 0

A répondu
How to use a filename character array as a name of a variable?
You can use EVAL (see Stephen's comment to why this can cause error) [~,varname]= fileparts(filename) data = [....]; % your da...

plus d'un an il y a | 0

A répondu
Early detection system of diabetic retinopathy using eye images by using matlab
If you have some labeled data you can try make a classifier see these examples Create Simple Image Classification Network - MAT...

plus d'un an il y a | 0

A répondu
Solving an implicit equation (iteration)
The formula has the form of an atracting fixed point if it looks like A=f(A) (and other conditions see the links below), then yo...

plus d'un an il y a | 0

| A accepté

A répondu
Resampling a signal without using built-in command
Regarding t: Your time intervals don't need to change length just the step size. Regarding x_a: you need to keep only the sampl...

plus d'un an il y a | 0

A répondu
Solution of implicit function - how to plot implicit functions?
Based on the equation you posted, the variable A=2*pi needs to be squared when it's inside the square root. But your code doesn'...

plus d'un an il y a | 1

| A accepté

A répondu
Finding the frequency spectrum of a list of column data
Here are three options 1) My favorite is to use pspectrum(data,fs). Where fs is sample frequency. For more information 'doc ps...

plus d'un an il y a | 0

A répondu
Plotting the range of a variable with defined intervals.
The plot documentation shows you can specify the type of line and markers like this x=0:0.1:1; % use colon notation to create a...

plus d'un an il y a | 0

A répondu
With two different initial values I am getting two different answers in fsolve. How to decide which one is more reliable?
The results are almost the same, but you can take a look at the display for each iteration see fsolve documentation, here is an ...

plus d'un an il y a | 0

Question


Incorrect font size for tiledlayout in livescript output [Bug?]
Using tiledlayout in a livescript does not output with the correct font size for the axis. Is this a bug? See example below, ...

presque 2 ans il y a | 1 réponse | 1

1

réponse