Community Profile

photo

Eike Blechschmidt


Last seen: 대략 2년 전 2021년부터 활동

통계

All
  • Leader
  • Speed Demon
  • Solver
  • Knowledgeable Level 1
  • First Answer

배지 보기

Content Feed

보기 기준

답변 있음
function value VS function handle?
With both statements you call the function. If you want the function handle you need to do: kk1 = @func1;

2년 초과 전 | 0

문제를 풀었습니다


Undocumented MATLAB tricks No. 1 - Save a function-returned struct
Often we face the case when we want to save a function-returned struct to a mat file with each of its field as individual variab...

2년 초과 전

답변 있음
Plot a sine wave with decreasing frequency over time
The easiest and correct is probably to use: f1 = 50; f2 = 10; t = 0:0.001:10; y = chirp(t,f1,t(end),f2); plot(t, y);

2년 초과 전 | 0

답변 있음
Plot a sine wave with decreasing frequency over time
How about f_upper = 50; f_lower = 10; t = 0:0.01:10; f = linspace(f_upper, f_lower, numel(t)); a = 10; x = a * sin(2*pi*f....

2년 초과 전 | 0

문제를 풀었습니다


3n + 1 Problem (a.k.a The Collatz Conjecture)
The 3n + 1 problem (a.k.a The Collatz Conjecture) Consider the following algorithm to generate a sequence of numbers. Start wit...

2년 초과 전

답변 있음
How to solve "Check for incorrect argument data type or missing argument in call to function 'exp'" in matrix for linear program
The following returns a table. X=readtable('Simulated Log Electricity Prices Test'); If you index it using the following a tab...

2년 초과 전 | 1

| 수락됨

답변 있음
Speed up a for loop in my programme?
If I understood you right this could do the trick and is about 2.5x faster on my machine. tic(); X=rand(size2*size2,1)*2*pi-pi...

2년 초과 전 | 0

답변 있음
Table variable subscripts must be real positive integers
I guess you just forgot the quotation marks around benchmarkName and assetNames.

2년 초과 전 | 0

답변 있음
Adding elements to the ends of vectors inside a cell array of vectors
You could use arrayfun: arrayfun(@(l,i1,i2,u) [l x(i1:i2) u], xLower,i1,i2, xUpper, “uniform“, false) This is untested b...

2년 초과 전 | 1

| 수락됨

질문


Does fileDatastore not implement "matlab.io.Datastore"?
I'm currently developing a custom datastore that takes an existing datastore and adds some features. In the constructor I would...

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

0

답변