Johannes Kalliauer
Institut für Mechanik der Werkstoffe und Strukturen
Followers: 0 Following: 0
Statistica
RANK
2.099
of 295.410
REPUTAZIONE
30
CONTRIBUTI
3 Domande
9 Risposte
ACCETTAZIONE DELLE RISPOSTE
100.0%
VOTI RICEVUTI
15
RANK
17.599 of 20.224
REPUTAZIONE
2
VALUTAZIONE MEDIA
0.00
CONTRIBUTI
1 File
DOWNLOAD
1
ALL TIME DOWNLOAD
29
RANK
of 153.822
CONTRIBUTI
0 Problemi
0 Soluzioni
PUNTEGGIO
0
NUMERO DI BADGE
0
CONTRIBUTI
0 Post
CONTRIBUTI
0 Pubblico Canali
VALUTAZIONE MEDIA
CONTRIBUTI
0 Punti principali
NUMERO MEDIO DI LIKE
Feeds
Inviato
Hurst Index (using Rescaled-Range)
Hurst index calculated based on the rescaled range https://www.youtube.com/watch?v=l08LICz8Ink
oltre un anno fa | 1 download |
How to save a binary image
imwrite(logical(B),'output_binary.png'); % getting example file from internet rgb = webread('https://www.mathworks.com/ma...
quasi 2 anni fa | 0
Precision in writetable()
You could use dlmwrite: https://www.mathworks.com/help/matlab/ref/dlmwrite.html dlmwrite('yourfile.txt',t{:,:},'\t','precision'...
oltre 2 anni fa | 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...
quasi 3 anni fa | 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...
quasi 3 anni fa | 0
how to make comments *not* wrap?
The answer (from 2015) of @Jon now with screenshot: Preferences -> MATLAB -> Editor/Debugger -> Language -> Comment formating ...
oltre 3 anni fa | 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)
oltre 3 anni fa | 1
Domanda
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]...
oltre 4 anni fa | 1 risposta | 0
1
rispostacommand "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...
circa 5 anni fa | 1
| accettato
Domanda
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...
circa 5 anni fa | 1 risposta | 0
1
rispostaError 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...
circa 5 anni fa | 0
Domanda
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,...
oltre 5 anni fa | 2 risposte | 0
2
rispostelength 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...
quasi 7 anni fa | 4