photo

Johannes Kalliauer


Institut für Mechanik der Werkstoffe und Strukturen

Last seen: 10개월 전 2018년부터 활동

Followers: 0   Following: 0

메시지

통계학

All
  • First Submission
  • Thankful Level 2
  • First Review
  • Revival Level 1
  • Thankful Level 1
  • Promoter
  • First Answer

배지 보기

Feeds

보기 기준

제출됨


Hurst Index (using Rescaled-Range)
Hurst index calculated based on the rescaled range https://www.youtube.com/watch?v=l08LICz8Ink

1년 초과 전 | 다운로드 수: 1 |

Thumbnail

답변 있음
How to save a binary image
imwrite(logical(B),'output_binary.png'); % getting example file from internet rgb = webread('https://www.mathworks.com/ma...

거의 2년 전 | 0

답변 있음
Precision in writetable()
You could use dlmwrite: https://www.mathworks.com/help/matlab/ref/dlmwrite.html dlmwrite('yourfile.txt',t{:,:},'\t','precision'...

2년 초과 전 | 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...

거의 3년 전 | 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...

거의 3년 전 | 0

답변 있음
how to make comments *not* wrap?
The answer (from 2015) of @Jon now with screenshot: Preferences -> MATLAB -> Editor/Debugger -> Language -> Comment formating ...

3년 초과 전 | 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)

3년 초과 전 | 1

질문


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]...

4년 초과 전 | 답변 수: 1 | 0

1

답변

답변 있음
command "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...

대략 5년 전 | 1

| 수락됨

질문


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...

대략 5년 전 | 답변 수: 1 | 0

1

답변

답변 있음
Error 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...

대략 5년 전 | 0

질문


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,...

5년 초과 전 | 답변 수: 2 | 0

2

답변

답변 있음
length 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...

거의 7년 전 | 4