photo

Krithika A


Aktiv seit 2018

Followers: 0   Following: 0

Statistik

MATLAB Answers

4 Fragen
11 Antworten

RANG
2.588
of 301.589

REPUTATION
24

BEITRÄGE
4 Fragen
11 Antworten

ANTWORTZUSTIMMUNG
75.0%

ERHALTENE STIMMEN
3

RANG
 of 21.343

REPUTATION
N/A

DURCHSCHNITTLICHE BEWERTUNG
0.00

BEITRÄGE
0 Dateien

DOWNLOADS
0

ALL TIME DOWNLOADS
0

RANG

of 175.641

BEITRÄGE
0 Probleme
0 Lösungen

PUNKTESTAND
0

ANZAHL DER ABZEICHEN
0

BEITRÄGE
0 Beiträge

BEITRÄGE
0 Öffentlich Kanäle

DURCHSCHNITTLICHE BEWERTUNG

BEITRÄGE
0 Discussions

DURCHSCHNITTLICHE ANZAHL DER LIKES

  • Thankful Level 2
  • First Review
  • Knowledgeable Level 2
  • First Answer
  • Thankful Level 1

Abzeichen anzeigen

Feeds

Anzeigen nach

Frage


Spectrogram error with multiple errors
Hello, I keep getting the following error when I try to do a spectrogram: Subscript indices must either be real positive int...

mehr als 7 Jahre vor | 1 Antwort | 0

1

Antwort

Beantwortet
how to read file with name consist of number and string
Go to the Home tab>import data. there you can select a single data set you want to use in matlab. Once there, you can create a f...

mehr als 7 Jahre vor | 0

Beantwortet
put a function inside loop and save as matrix and csv
d = dir('Bus_Data*.csv'); % dir struct of all pertinent .csv files n = length(d); % how many there were for...

fast 8 Jahre vor | 1

Beantwortet
Rename a directory in-place (without moving its content)
What do you mean by rename the directory? You mean the folder that has all your files? If that's it, you just need to rename the...

fast 8 Jahre vor | 0

Beantwortet
Command "Guide" does not work anymore.
This answer might solve your problem: https://uk.mathworks.com/matlabcentral/answers/236604-java-update-and-guide-command#ans...

fast 8 Jahre vor | 0

| akzeptiert

Beantwortet
How do I convert my .asc file to .xlsx file using MATLAB?
An example of one file (you'll need to change it depending on your data structure): file = 'file.dat'; delim = ' '; % Y...

fast 8 Jahre vor | 0

Beantwortet
Load .dat file in Matlab
This may help: https://stackoverflow.com/questions/7780277/how-to-import-dat-file-into-matlab

fast 8 Jahre vor | 0

Beantwortet
What does this error mean?
You use min in your code. min is already a matlab function

fast 8 Jahre vor | 0

Beantwortet
How to split time series array into subarrays according to sampling rate?
sps = 128; n = 768; % 128*6 = 768, so a 6s long signal with 128 sps x = randn(1,n); y = reshape(x, [], sps*2);

fast 8 Jahre vor | 0

Beantwortet
how to plot many lines on the same graph
Use the function matlab function "hold on", eg.,: x = [1 2 3] y = [4 6 7] z = [7 8 9] figure plot(x,y) hold ...

fast 8 Jahre vor | 2

| akzeptiert

Frage


Remove artefact in signal, and then look at the PSD?
Hello everyone, I have filtered my signal according to the frequencies I am interested in using butterworth. But there are so...

fast 8 Jahre vor | 0 Antworten | 0

0

Antworten

Beantwortet
Need to extract a piece of data from hundreds of files
I use dir for my text files, so for me I would do this: files = dir('file*.txt'); % Extracting all text files that start wi...

fast 8 Jahre vor | 0

| akzeptiert

Beantwortet
I need to activate Matlab on my Laptop, but Matlab activation has broken itself.
This error indicates that you have exceeded the yearly amount of computer redesignations for your license. In other words, you h...

fast 8 Jahre vor | 0

Frage


Multiple figures in for loop
Hello, I would like to run a for loop that produces multiple plots. I looked at other questions that ask this, but they don't...

fast 8 Jahre vor | 1 Antwort | 0

1

Antwort

Frage


Problem with error "Subscript indices must either be real positive integers or logicals"
Hello, I know this is a common problem, but I don't know how to fix it in my own context. I get the following error on line ...

etwa 8 Jahre vor | 1 Antwort | 0

1

Antwort