| bio | website | |
|---|---|---|
| location | Norway | |
| age | 28 | |
| visits | member for | 1 year, 10 months |
| seen | Apr 21 at 11:41 | |
| stats | profile views | 36 |
PhD candidate doing research within microwave theory and techniques with focus on time domain waveform engineering for power amplifier efficiency and linearity enhancement techniques.
I mainly use Agilent ADS for RF/microwave simulations, and Matlab for signal processing/estimation. I also spend some time on helping on the development of the matlab2tikz script for converting Matlab plots to TikZ/PGF-plots.
|
Apr 4 |
comment |
Plotting from MATLAB with matfig2pgf: some plots do not show up in the pdf Not an answer to your question, but I'd recommend you to use matlab2tikz instead of matfig2pgf (which matlab2tikz is based on). See github.com/nschloe/matlab2tikz, or mathworks.com/matlabcentral/fileexchange/22022 |
|
Dec 30 |
awarded | Nice Question |
|
Sep 21 |
answered | Problems with undefined reference in beamer |
|
Sep 21 |
comment |
Problems with undefined reference in beamer Did some more testing now, and it seems like this is coming from the pgfpages package. But what exactly I don't know. |
|
Sep 21 |
asked | Problems with undefined reference in beamer |
|
Sep 4 |
comment |
Unicode math with amsmath, new error Thanks. I've sent you an e-mail with the log attached. |
|
Sep 4 |
comment |
Unicode math with amsmath, new error Is this actually fixed? Updated my TL today (both TL and all packages), and grabbed the newest version of lualatex-math from github.com/phst/lualatex-math, but I still get errors when trying to compile the MWE at github.com/wspr/unicode-math/issues/246. I.e.: ! Undefined control sequence.
\lltxmath_set_mathchar:NN ...ardef #1\lua_now_x:n
{lualatex.math.print_class... |
|
Sep 3 |
awarded | Yearling |
|
Jul 31 |
accepted | Get back “old” math font in LuaLaTeX+beamer |
|
Jul 31 |
comment |
Get back “old” math font in LuaLaTeX+beamer Ok, definitely the same issue. If you post it as an answer I can accept it and close this question. Again, thanks. |
|
Jul 30 |
comment |
Get back “old” math font in LuaLaTeX+beamer Not sure if I'm experienced enough to tell if its the same thing or not. But think I'll try to downgrade to a previous version of the package if I can find one anywhere. Thanks for the tip! |
|
Jul 30 |
asked | Get back “old” math font in LuaLaTeX+beamer |
|
Jun 10 |
accepted | TikZ externalize option causes error in compilation |
|
Jun 9 |
comment |
TikZ externalize option causes error in compilation Ok, figured it out. It's the CVS of pgf that's the source for the error. I pulled the latest version of pgfplots, but nothing changed. After replacing the CVS pgf version in my local texmf dir with the current stable release it worked just fine both with and without externalize active. So thanks for pointing me in the correct direction! |
|
Jun 9 |
comment |
TikZ externalize option causes error in compilation I have the version that's available as a zip-file on the project page ( pgfplots.sourceforge.net/pgfplots_unstable.tds.zip ). As for the pgf, I have the version that's available on texample.net (which I think is among the most recent builds). If i manage to figure out this cvs-thing on Windows I'll try to pull code directly from the project. |
|
Jun 9 |
comment |
TikZ externalize option causes error in compilation I tried to move the texmf-local dir to somewhere where mktexlsr can't find it, and then it worked fine with and without externalize activated. After moving it back c:\texlive\ the error occurs again. So it has to be related to either CVS-pgf, or CVS-pgfplots, or the MinionPro fonts. Those are the only things I've added in the local texmf dir. |
|
Jun 9 |
comment |
TikZ externalize option causes error in compilation That's strange. Maybe I have to try to remove all the files that are related to the MinioPro fonts and try again. Really annoying though, as I can't see why that should be related.
I can also add that with some other plots, it works just fine (i.e. if I use code from plots in the pgfplots manual, it works fine with and without externalize activated. But with data generated in Matlab, like in the MWE, I experience the error). |
|
Jun 9 |
asked | TikZ externalize option causes error in compilation |
|
Jun 6 |
comment |
Memory limit reached - Precompile .tikz plots - How to output pdf with papersize near to image What kind of plot is this? Find it hard to believe that you need all those points, as Jake already have pointed out. |
|
Jun 5 |
comment |
PGFPlots - shift marks If you get the data from i.e. Matlab, one way to do this is to use something ala plot(x(1:3:end),f(x(1:3:end)),'bx',x(1:5:end),f2(x(1:5:end)),'ro')
where i.e. x = -pi:0.01:pi; f = @(x)sin(x); f2 = @(x)sin(x);
So if you store the data in the same manner it should be a quite easy fix. |