Respondida
3D Plot from Excel data
OK, let's work with plot3. The relationships in the data might not be a suited to plot3, but this is a reasonable start. It's ...

casi 5 años hace | 1

Respondida
Stacked bar plot, assign "names" to color
Just add labels to your legend: labels = { 'Jack', 'Fred', 'abc', 'def' }; % fill out, as desired legend(labels);

casi 5 años hace | 0

Respondida
How to get all data from m-function?
Your function is defined to only return A (which is perhaps a scalar). To return multiples values, return them as elements in a...

casi 5 años hace | 0

Respondida
subtract value from column in table
You need to use braces: Scan{:,c} = (Scan{:,c}-minus);

casi 5 años hace | 2

| aceptada

Respondida
Noisy plot after deviation (no sensor)
@Bruce Rogers I added some filtering using MATLAB's smoothdata function. The result is a pretty good sine wave both for velocit...

casi 5 años hace | 0

Respondida
correct use of randsrc function
There are lots of ways to do this, I suppose. Here's what I put together -- with a pesky twist. The weighting is built-in to t...

casi 5 años hace | 1

Respondida
How to find the zero crossing in x and time data sets?
Here's what I put together. The variable fCross is what you are looking for. % data from posted matlab.mat files f = readmatr...

casi 5 años hace | 4

| aceptada

Respondida
Plotting an amplitude spectrum of a .txt file
This seems to work... % load seismic signal data ss = readmatrix('https://www.mathworks.com/matlabcentral/answers/uploaded_fi...

casi 5 años hace | 1

Respondida
Making two 3D vectors the same length
Given that your question is... How do I pad vector static with zeros at the end so that both vectors are the same dimension?...

casi 5 años hace | 1

| aceptada

Respondida
the colors red, blue, yellow repeated again in my plot, how I can give each curve in the plot different color
One way is to specify a different color in each call to the plot function: K=1:30; for i=1:10 C_T=i*log(K); plot_T =...

casi 5 años hace | 0

| aceptada

Respondida
How to create several figures in a subplot with different axes
You're aren't using subplot correctly. For each plot you need a separate call to subplot with the index (in your case, row) whe...

casi 5 años hace | 0

Respondida
Accessing multiple columns in cell array
You need to retrieve the elements in their underlying data type (hence the use of braces) and concatenate the values using brack...

casi 5 años hace | 0

Respondida
How to store data whose dimension varies at each steps of run?
This is a bit long-winded (and can surely be shortened), but I think it achieves what you are looking for: N = 8; % iterations ...

casi 5 años hace | 1

| aceptada

Respondida
Find a 4-point polygon enclosing scattered points
No doubt this can be simplified, but I think it meets your objective of finding the vertices (4) enclosing the points: % create...

casi 5 años hace | 1

| aceptada

Respondida
Don't want box plots to overlap...
You only need to use the boxplot function once. Combine the data in a matrix. You'll get a box plot for each column of data an...

casi 5 años hace | 0

| aceptada

Respondida
How to disable Matlab verbose mode?
warning off verbose

casi 5 años hace | 0

| aceptada

Respondida
Find the indices of the imaginary element of the matrix
% test matrix A=[1 2 3; 4+i 5 6-i; 7 8+i 9] % identify imaginary elements in A (+1 or -1) B = imag(A)...

casi 5 años hace | 0

Respondida
3D surface plot from 3 columns of excel data?
Here you go... T = readtable('https://www.mathworks.com/matlabcentral/answers/uploaded_files/645855/P3%20data.xlsx'); x = T{:,...

casi 5 años hace | 0

| aceptada

Respondida
Create new matrix containing only subset of values from old matrix
For the matrix multiplication, use squeeze so both matricies are 24x24, then assign the result to the corresponding 1st dimensio...

casi 5 años hace | 1

| aceptada

Respondida
Average over particular ranges of one dimension in matrix
% test data data = rand(22,40,24,24); % make the 2nd dimension the 1st dimension d1 = permute(data,[2 1 3 4]); % compute...

casi 5 años hace | 0

Respondida
How to place percent of each bar/bin of histogram on histogram chart in the code below?
Instead of histogram, I suggest you use histcounts along with bar: % test data data = rand(1,1000); hc = histcounts(data); ...

casi 5 años hace | 1

| aceptada

Respondida
How to do a 2D surface pot as excel graph XY plane isoSAR?
f = figure; f.Color = 'w'; f.Units = 'normalized'; f.Position = [.1 .2 .8 .5]; M1 = readmatrix('https://www.mathworks.com/...

casi 5 años hace | 0

Respondida
Change GridSize of existing non empty TiledChartLayout object
Try using flow for the grid size... tiledlayout('flow'); nexttile; plot([1 2 3],[4 5 6],'-ob'); pause(2); nexttile; pl...

casi 5 años hace | 0

Respondida
how can I save my error term in an array within while loop?
I haven't examined your code in any detail. However, if I understand your question correctly, you simply want to save all the e...

casi 5 años hace | 0

Respondida
I need to fits the attached data as in image
Here's what I put together. This is only for the T5-L5 data. You can repeat this for the rest of the data and build up the plo...

casi 5 años hace | 0

Respondida
What is the matter with this nested looped?
Most likely the problem is with this line for x=n:1 if n > 1, the loop does not execute. Did you mean for x=1:n

casi 5 años hace | 0

Respondida
Random sample, I want the 5% of the data per each hour
There might be a way to simplify this, but I believe the script below achieves what you are after... % read all the data into a...

casi 5 años hace | 0

| aceptada

Respondida
Sort Columns by ascending order while maintaing cell values in place for every row
Hmmm, I think this works... for k =1:100 %For however many trials (100 in this case) p(:,k)= randperm(32); %Create a perm...

casi 5 años hace | 0

Respondida
Help in plot while plotting a time step response.
A simple solution is just to concatenate the last point from one set of vectors with the subsequent set: t_1 = [t_0(end) t_1]; ...

casi 5 años hace | 0

| aceptada

Respondida
Excel Sheet Sorting and Data Analysis
Assuming the data for the names, grades, and favorite colors are in columns 1, 2, and 3, respectively, then the following code o...

casi 5 años hace | 0

| aceptada

Cargar más