Beantwortet
How do I fit a curve ?
hello a cardioid equation may be the solution but I have serious doubts you can fit a polynomial for this shape as I am lazy...

mehr als 3 Jahre vor | 0

| akzeptiert

Beantwortet
Plot only the outermost nodes
hello again I think I already answered this in your other post here again attached the new code

mehr als 3 Jahre vor | 0

| akzeptiert

Beantwortet
How to standardize an array so that the maximum value is 1 and minimum is -1 keeping the zero value as zero?
hello this can only be accomplished if you accept that the positive and negative parts of your signal are normalized by a diff...

mehr als 3 Jahre vor | 0

| akzeptiert

Beantwortet
I have multiple spread sheets with multiple sheets that I want to write an indexing data import function for
hello you can probably build your solution from this example I assume you want to concatenate the data from the 3 sheets ?...

mehr als 3 Jahre vor | 0

| akzeptiert

Beantwortet
finding singular outliers in the presence of data with steep changes but not singular
hello this is my result so far it will not look at the data in the first and last 10% of the time vector so thefocus is on t...

mehr als 3 Jahre vor | 0

Beantwortet
Displaying multiple line plots with different y-values on same baseline
hello IMO, the simplest trick is to "normalize" your data by removing y(1) to each individual y array so that all lines start ...

mehr als 3 Jahre vor | 0

Beantwortet
How can I plot frequency vs magnitude of the scalogram?. The input file is the M*N matrix that is a scalogram. Any one help me by providing MATLAB code.
hello the spectrum is either the mean or the peak value along the x direction of S see code example below you can change ...

mehr als 3 Jahre vor | 0

Beantwortet
Matlab mixed IIR Filter
hello try this this can be genralizd for a arbritary sequence of x1 / x2 signals NB that a sampling frequency of 100 Hz is ...

mehr als 3 Jahre vor | 0

| akzeptiert

Beantwortet
Storing Variables in a loop to out put in a table
hello try this clearvars dt = 0.1;% t increment iter = 9; % iterations for ci = 1:iter time(ci,1) = 1+(ci-1)...

mehr als 3 Jahre vor | 0

Beantwortet
I would like to use matlab to add information from a .dat file to existing MatLab variables
hello try this the text file used for my code is attached hope it helps filename = 'text.txt'; D=readlines(filename);...

mehr als 3 Jahre vor | 0

| akzeptiert

Beantwortet
How to import odd and even rows from a more than one txt file ?
hello maybe this ? I wasn't sure when you say even / odd rows if we take the first line (x y z) into account or not so cho...

mehr als 3 Jahre vor | 1

| akzeptiert

Beantwortet
My Spectrogram doesn't look right, and has negative values
hello stft : use option 'FrequencyRange','onesided' to have only positive frequencies (or use spectrogram) also y log scale...

mehr als 3 Jahre vor | 0

| akzeptiert

Beantwortet
A figure created within a for loop is not plotted (only the last one is shown)
hello again so there was some figure calls still present in some functions (fun1, fun2 ,...) I cleaned that so you have only ...

mehr als 3 Jahre vor | 0

| akzeptiert

Beantwortet
Importing Excel file data and creating variables with the imported data
hello work with tables or structures...(read doc / help sections if your are not familiar with them ) here a starter % Impo...

mehr als 3 Jahre vor | 0

Beantwortet
How to delete text file some perticular lines using Matlab script
hello its' a bit confusing.... in other words you want to keep the lines that contain a certain variable name ? then try thi...

mehr als 3 Jahre vor | 0

Beantwortet
How can I extract capital words from a string
hello this is one solution (for strings) . For char array it's almost the same (you don't even need to convert back from char ...

mehr als 3 Jahre vor | 0

Beantwortet
Drop data from datatime by condition
hello try this this code will remove data that are contiguous and within given bounds (here 24 hrs min and 36 hours max) th...

mehr als 3 Jahre vor | 1

| akzeptiert

Beantwortet
Remove matrix from cell array that doesn't fit required matrix size
hello this will remove the unwanted trailing data data =readtable('EURUSD=X.csv') [m,n] = size(data); k = floor(m/20)*20; ...

mehr als 3 Jahre vor | 0

| akzeptiert

Beantwortet
plotting 12 graphs for different months
hello I tweaked a bit your code load data_matrix.mat data=SECTION_L; data(:,1:3)=[]; row=9; cleanup=data([1 2 3 row],:);...

mehr als 3 Jahre vor | 0

Beantwortet
nothing assing to my variable that is in if statement
hello you need to index x in the for loop for i = 1:length(x)/2 if x(i) < 0 % here y(:,i) = Gt_new(1) end e...

mehr als 3 Jahre vor | 0

Beantwortet
plot some nodes from an .txt file
hello Alberto here you are ; use function boundary with shrink factor = 1 data = readmatrix('filename.txt'); x = data(:,1);...

mehr als 3 Jahre vor | 0

| akzeptiert

Beantwortet
Matlab Audio Filter with changing Frequency
hello again so this is a variable coefficient IIR implementation I used a white noise as test signal, the output signal show...

mehr als 3 Jahre vor | 0

| akzeptiert

Beantwortet
Easy question - How can I save this variable within the for loop?
hello If I understand correctly , n must be multiple of 10 and that's the only values of interest for A and B, no need to per...

mehr als 3 Jahre vor | 0

| akzeptiert

Beantwortet
How can I group my data per hour in order to not over count my shipping data?
hello have to admit I am not super expert in timetables , but I managed to put some code together and test it i am not sur...

mehr als 3 Jahre vor | 0

| akzeptiert

Beantwortet
Is there any matlab function to calculate moving mean square error?
hello I doubt that there is a code for that try this : (based on formula) : % dummy data n=300; x=linspace(0,2*pi,n)...

mehr als 3 Jahre vor | 0

Beantwortet
Linear envelope of an EMG signal
hello Ines there is no bug here , the plot is correct vs what matlab is supposed to do when you select 'rms' option, you can...

mehr als 3 Jahre vor | 0

| akzeptiert

Beantwortet
Eliminating the noise from the raw data using median filter
hello again is it now smooth enough ? % Remove quiet parts of a signal. clc; close all; clear; workspace; format ...

mehr als 3 Jahre vor | 1

Beantwortet
How to interpolate/resample an irregular dataset into 1 step spacing?
hello Becky try this the second case means you ask interp1 to do extrapolation, as your original x data do not covers the en...

mehr als 3 Jahre vor | 0

| akzeptiert

Beantwortet
How to simulate data from txt correctly?
hello I tried to reproduce your problem , but got the right output , not what you show... hope the attached files can help you...

mehr als 3 Jahre vor | 1

| akzeptiert

Beantwortet
import a certain text file .txt from a specific folder
hello again for numerical arrays use readmatrix instead of importdata folder = 'C:\Users\Alberto\....'; % folder where the .t...

mehr als 3 Jahre vor | 0

Mehr laden