Johannes Kalliauer
Institut für Mechanik der Werkstoffe und Strukturen
Followers: 0 Following: 0
Statistiques
RANG
2 099
of 295 467
RÉPUTATION
30
CONTRIBUTIONS
3 Questions
9 Réponses
ACCEPTATION DE VOS RÉPONSES
100.0%
VOTES REÇUS
15
RANG
17 608 of 20 234
RÉPUTATION
2
CLASSEMENT MOYEN
0.00
CONTRIBUTIONS
1 Fichier
TÉLÉCHARGEMENTS
1
ALL TIME TÉLÉCHARGEMENTS
29
RANG
of 153 912
CONTRIBUTIONS
0 Problèmes
0 Solutions
SCORE
0
NOMBRE DE BADGES
0
CONTRIBUTIONS
0 Publications
CONTRIBUTIONS
0 Public Chaîne
CLASSEMENT MOYEN
CONTRIBUTIONS
0 Point fort
NOMBRE MOYEN DE LIKES
Feeds
How to save a binary image
imwrite(logical(B),'output_binary.png'); % getting example file from internet rgb = webread('https://www.mathworks.com/ma...
presque 2 ans il y a | 0
Precision in writetable()
You could use dlmwrite: https://www.mathworks.com/help/matlab/ref/dlmwrite.html dlmwrite('yourfile.txt',t{:,:},'\t','precision'...
plus de 2 ans il y a | 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...
presque 3 ans il y a | 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...
presque 3 ans il y a | 0
how to make comments *not* wrap?
The answer (from 2015) of @Jon now with screenshot: Preferences -> MATLAB -> Editor/Debugger -> Language -> Comment formating ...
plus de 3 ans il y a | 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)
plus de 3 ans il y a | 1
Question
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]...
plus de 4 ans il y a | 1 réponse | 0
1
réponsecommand "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...
environ 5 ans il y a | 1
| A accepté
Question
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...
environ 5 ans il y a | 1 réponse | 0
1
réponseError 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...
environ 5 ans il y a | 0
Question
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,...
plus de 5 ans il y a | 2 réponses | 0
2
réponseslength 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...
presque 7 ans il y a | 4