提问


poor MATLAB 2011b performance on OSX 10.6
I tend to use debug mode a lot, step into code, test temporary stuff in the command window while at a break-point etc. On any wi...

13 years 前 | 1 个回答 | 0

1

个回答

已回答
FFT / IFFT question .
Actually: >> ifft([1 2 3 2 1], 'symmetric') ans = 2.2000 -0.5236 -0.0764 -0.0764 -0.5236 >> ifft([1 2 3 ...

13 years 前 | 0

提问


Explicitly specifying line colors when plotting a matrix
x = 1:3; y = [1 2 3; 42 40 34]; plot(x,y,'Color', [0.5 0.5 0.5; 1 0 0]) produce an error: Error using plot Co...

13 years 前 | 4 个回答 | 9

4

个回答

提问


ifft of symmetric data: do I need to provide the redundant input?
Is it possible to lure ifft(X,[],'symmetric') into working on only the non-redundant input? It seems that the low-level FFTW ...

13 years 前 | 0 个回答 | 0

0

个回答

提问


load() into workspace?
If I place load() into a m-file script, it will load into the workspace, available for the caller. If I place it into a m-fil...

13 years 前 | 2 个回答 | 0

2

个回答

已回答
Fast calculation of short cumulative product vector
Thank you for all your help. There seems to be many different ways to accomplish this, each with different speed-tradeoffs. The ...

13 years 前 | 0

提问


Fast calculation of short cumulative product vector
I want to calculate a reasonable short vector many times with variable inputs a and len %y = [a a^2 a^3...a^(len)] My method...

13 years 前 | 6 个回答 | 1

6

个回答

已回答
Writing elegant MATLAB code
Regarding question#2: idx = []; period = 10; duty_cycle = 3; for i=0:length(x) if rem(i,period) < duty_cycle ...

13 years 前 | 0

提问


Writing elegant MATLAB code
I have a great interest in writing my MATLAB code the "right" way. I want it to be compact, readable and fast. As such, I have a...

13 years 前 | 5 个回答 | 0

5

个回答

提问


Export figure is painfully slow. Save as png is fast. Why?
I tend to export some figures for use in presentations etc. I have noticed that for some figures (perhaps those with lots of dat...

13 years 前 | 1 个回答 | 0

1

个回答

已回答
Increase the speed of the program
Whenever I see a "for" statement in MATLAB, I question myself if that operation can be vectorized. Is it possible to use dlmread...

13 years 前 | 1

已回答
[DEPRECATED] What frustrates you about MATLAB?
The fact that once you schedule a low-level function, you cannot in any way stop it. Such as conv(zeros(umpteen,1), ones(umpteen...

13 years 前 | 4

已回答
ploting a file with variable name
If you use the {} Code tags, you will make the code a lot more readable for other users, and increase the chance that someone bo...

13 years 前 | 1

| 已接受

已回答
Simple visualization of a 3-d array (volumetric?)
Thank you for your answers, but I was not able to use them for my thing. In the end, I wrote a small script for myself that is c...

13 years 前 | 2

| 已接受

提问


Simple visualization of a 3-d array (volumetric?)
I use image(sc) a lot for visualizing the contents of any 2-d array that I may be working on. Sometimes I am working on 3-d arra...

14 years 前 | 4 个回答 | 0

4

个回答

提问


Define shared subfunctions inside a classdef *.m file?
I want to define a relatively small class (small enough that it makes sense to do everything inside of one file). I want to reus...

14 years 前 | 2 个回答 | 0

2

个回答

提问


multidimensional colon operator?
I want to do something like that below: copy an N-dimensional array into a N+1-dimensional array at index t in the last dimensio...

14 years 前 | 2 个回答 | 3

2

个回答