Johannes Kalliauer
Institut für Mechanik der Werkstoffe und Strukturen
Followers: 0 Following: 0
Statistik
RANG
2.103
of 295.735
REPUTATION
30
ANTWORTZUSTIMMUNG
100.0%
ERHALTENE STIMMEN
15
RANG
17.522 of 20.277
REPUTATION
3
DURCHSCHNITTLICHE BEWERTUNG
0.00
BEITRÄGE
1 Datei
DOWNLOADS
3
ALL TIME DOWNLOADS
31
RANG
of 154.433
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 Highlights
DURCHSCHNITTLICHE ANZAHL DER LIKES
Feeds
Gesendet
Hurst Index (using Rescaled-Range)
Hurst index calculated based on the rescaled range https://www.youtube.com/watch?v=l08LICz8Ink
mehr als ein Jahr vor | 3 Downloads |
How to save a binary image
imwrite(logical(B),'output_binary.png'); % getting example file from internet rgb = webread('https://www.mathworks.com/ma...
fast 2 Jahre vor | 0
Precision in writetable()
You could use dlmwrite: https://www.mathworks.com/help/matlab/ref/dlmwrite.html dlmwrite('yourfile.txt',t{:,:},'\t','precision'...
mehr als 2 Jahre vor | 0
Why does MATLAB not export EPS files properly?
I would recommend to use 'ContentType','vector' of https://de.mathworks.com/help/matlab/ref/exportgraphics.html %EPS exportgr...
fast 3 Jahre vor | 5
Why is vector graphics chopped into pieces?
I would recommend to use 'ContentType','vector' of https://de.mathworks.com/help/matlab/ref/exportgraphics.html %EPS exportgr...
fast 3 Jahre vor | 0
how to make comments *not* wrap?
The answer (from 2015) of @Jon now with screenshot: Preferences -> MATLAB -> Editor/Debugger -> Language -> Comment formating ...
mehr als 3 Jahre vor | 4
How can I read the elements of an array backwards?
a horizontal vector can be fliped using fliplr x=1:4 x=fliplr(x)
mehr als 3 Jahre vor | 1
Frage
How to simplify unit fractions?
u1 = symunit; u2 = symunit; x=2*u1.meter; y=5*u2.millimeter; frac=x/y double(frac) Results in frac = (2/5)*([m]/[mm]...
mehr als 4 Jahre vor | 1 Antwort | 0
1
Antwortcommand "mex" in terminal I get "This is pdfTeX" instead of Matlab-mex-command
To solve this issue: 1) I renamed `/usr/local/texlive/2018/bin/x86_64-linux/mex` to something else 2) I added `export PATH=/op...
etwa 5 Jahre vor | 1
| akzeptiert
Frage
command "mex" in terminal I get "This is pdfTeX" instead of Matlab-mex-command
If I run mex in terminal I get: This is pdfTeX, Version 3.14159265-2.6-1.40.19 (TeX Live 2018) (preloaded format=mex) restric...
etwa 5 Jahre vor | 1 Antwort | 0
1
AntwortError 1 error C1083: Cannot open include file: 'mex.h': No such file or directory
Following worked for me: gcc -c -I /opt/MATLAB/R2018b/extern/include myMEXfile.c if I run mex I get: This is pdfTeX, Version...
etwa 5 Jahre vor | 0
Frage
Set the color of the axes per default to black (instead of dark gray)?
I am using %#!/bin/rm clc clear set(groot,'DefaultFigureGraphicsSmoothing','off') %not blurry function (circles) set(groot,...
mehr als 5 Jahre vor | 2 Antworten | 0
2
Antwortenlength of a string
If you have _string_ not a _char_ then you have to use a different command to get the number of chars: <https://de.mathworks.co...
fast 7 Jahre vor | 4