Statistik
RANG
38.714
of 295.527
REPUTATION
1
BEITRÄGE
17 Fragen
0 Antworten
ANTWORTZUSTIMMUNG
23.53%
ERHALTENE STIMMEN
1
RANG
of 20.242
REPUTATION
N/A
DURCHSCHNITTLICHE BEWERTUNG
0.00
BEITRÄGE
0 Dateien
DOWNLOADS
0
ALL TIME DOWNLOADS
0
BEITRÄGE
0 Beiträge
BEITRÄGE
0 Öffentlich Kanäle
DURCHSCHNITTLICHE BEWERTUNG
BEITRÄGE
0 Highlights
DURCHSCHNITTLICHE ANZAHL DER LIKES
Feeds
Frage
How to improve with single 4D arrays when memory limit problem?
I am studying the question in the thread here . I am replacing my 2D cell array of matrices with a single 4D array but I am gett...
fast 5 Jahre vor | 2 Antworten | 0
2
AntwortenFrage
Set path won't save with WFDB
I am trying to setup WFDB in Debian 8.5 MATLAB 2016b by the official instructions given <https://github.com/ikarosilva/wfdb-app-...
etwa 8 Jahre vor | 0 Antworten | 0
0
AntwortenFrage
How to round up to closest 0 or 5 in array?
Code utp = [420.680537950975, 412.407955038480, 389.575547217989, 366.089887932711, 363.090652446469, 352.095749639858]; ...
etwa 8 Jahre vor | 1 Antwort | 0
1
AntwortFrage
How link axes horizontally in subplots?
Code f = figure(); bFig(1:10) = axes(f); for k = 1:numel(bFig) bFig(k) = subplot(5,2,k); end for i=1...
etwa 8 Jahre vor | 1 Antwort | 0
1
AntwortFrage
How to get 1807 point data array to 1806 data array?
I thought the process would go with interpolation like the following but not u = interp1(u, size(u) - 1); which gives me...
etwa 8 Jahre vor | 2 Antworten | 0
2
AntwortenFrage
How to compare xcorr and crosscorr in Matlab?
I am comparing two signals where the one is original, while the other one converted by distribution theory. Code where I am not ...
etwa 8 Jahre vor | 0 Antworten | 0
0
AntwortenFrage
How to have MATLAB 2016 Legend without box and as transparent?
My proposal but I cannot get it work in MATLAB 2016b f = figure; hax = axes(f); [BL,BLicons] = legend(hax, 'lorem'); ...
etwa 8 Jahre vor | 2 Antworten | 0
2
AntwortenFrage
How to validate expected numeric tall array column?
I have 60 column tall array where I cannot declare expected numeric columns numeric. I exported those numeric columns from Googl...
etwa 8 Jahre vor | 1 Antwort | 0
1
AntwortFrage
How to transform/scale data with XLim adjusted x axis range in plot?
Code where the first figure has ranges 0x1 and 0x100, respectively for x-axis and y-axis; expected range for the second figure i...
etwa 8 Jahre vor | 1 Antwort | 0
1
AntwortFrage
How to hide "Figure" the window title bar for a matlab figure?
I want to retain the figure number but remove the word "Figure". I can do but it removes the figure number % https://se.ma...
etwa 8 Jahre vor | 1 Antwort | 0
1
AntwortFrage
How to normalize well data between [-1,1]?
Proposal which gives a results which looks correct; Can you return the original vector from the normalised result? % https:...
etwa 8 Jahre vor | 2 Antworten | 0
2
AntwortenFrage
How to expand figure south to the complete south?
I do `plot(u); movegui(gcf, 'south');` but it takes only part of the south. I want that it takes the complete space at the top (...
etwa 8 Jahre vor | 0 Antworten | 0
0
AntwortenFrage
What is MATLAB corresponding test for chi2gof but for Complex values?
I have an array of complex values. I would like to do a similar test as chi2gof but for complex values. MATLAB: 2016b O...
etwa 8 Jahre vor | 1 Antwort | 0
1
AntwortFrage
How to rotate polar radius to boundaries?
I am thinking if there is any method to rotate origo to boundaries and boundaries to origo. The related thread has the relevant ...
etwa 8 Jahre vor | 0 Antworten | 0
0
AntwortenFrage
How to mirror matrix on the diagonal?
I want to mirror data matrix on the diagonal. Input: y | ____ x Expected output: x |_y ...
etwa 8 Jahre vor | 3 Antworten | 0
3
AntwortenFrage
How to load standard image Lena?
I tried the following unsuccessfully but also the names `lenna512.bmp`, `lena512.png`, `lenna512.png`, `lena.png`, `lenna.png`, ...
etwa 8 Jahre vor | 2 Antworten | 1
2
AntwortenFrage
How to see how much you have swap by Matlab prompt in your system?
I would like to verify how much users have swap on their system by one-liner. Is there anything about the thing in Matlab prom...
etwa 8 Jahre vor | 1 Antwort | 0
1
AntwortGelöst
Make the vector [1 2 3 4 5 6 7 8 9 10]
In MATLAB, you create a vector by enclosing the elements in square brackets like so: x = [1 2 3 4] Commas are optional, s...
etwa 11 Jahre vor
Gelöst
Times 2 - START HERE
Try out this test problem first. Given the variable x as your input, multiply it by two and put the result in y. Examples:...
etwa 11 Jahre vor