回答済み
Error: Illegal use of reserved keyword "for". What does it mean in my Code. Need help!
Hallo, das ist zugegebenermaßen etwas gemein, weil die Wurzel des Problems an anderer Stelle liegt. Diese anderen Stellen werde...

3年弱 前 | 1

| 採用済み

回答済み
Using intlinprog in Simulink
Hi Dan, the problem is that intlinprog is not supported for code generation and Simulink generates C code from the code contain...

3年弱 前 | 0

| 採用済み

回答済み
Query Instrument - non-numeric value
Hi Tobias, to answer the final part: you can use the MATLAB Function block to incorporate MATLAB code into Simulink models. Be...

3年弱 前 | 0

| 採用済み

回答済み
How to use parallel computing for a BytesAvailableFnc of a serial object?
Hi Oliver, you could use the backgroundPool function. This even works without Parallel Computing Toolbox. As soon as you run th...

3年弱 前 | 0

| 採用済み

回答済み
Generating C Code from Matlab Code containing ODE15s Solver
Hi Hossein, it could be that you have not properly defined the input arguments of the function. My recommendation is to use the...

3年弱 前 | 0

回答済み
Create a logarithmic Latin Hypercube Sampling distribution (with lhsdesign).
Hi Lorenz, I am not sure whether this is legitimate from the statistics point of view, but you could get a nice distribution by...

3年弱 前 | 1

| 採用済み

回答済み
Wie klappt die normale und inverse Fouriertransformation?
Hallo, abgesehen von den Verschiebungen durch fftshift sind die Unterschiede zwischen Cor und FTFT_S_Cor in der Größenordnung v...

3年弱 前 | 0

| 採用済み

回答済み
How to use set_param(BlockX, 'SampleTime') during runtime of Simulink?
Hi FJ, as the error message indicates, I don't think this can be done directly. My recommendation would be to choose the sampl...

3年弱 前 | 0

| 採用済み

回答済み
Running external program as batch file with delayed inputs
Hi Jan, I would primarily consider that an issue of the .bat-file: if it is designed to accept multiple commands via a text fil...

3年弱 前 | 1

| 採用済み

回答済み
On shifting spectra pixelwise towards lower/higher x-axis values by lsqcurvefit or such - constrain boundaries to integer values
Hi Michael, least squares solvers are based on gradients and I would therefore not use them for integer problems unless you can...

3年弱 前 | 1

| 採用済み

回答済み
Nach Dateiauswahlen Pfade und Namen in Vector speichern
Hallo Maverick, zum Vorbelegen von Text würde ich strings verwenden. Beim Aufruf von uigetfile würde ich mir immer zwei Argum...

3年弱 前 | 0

| 採用済み

回答済み
Füllen der Fläche zwischen zwei Vektoren mit NaN-Werten am Ende mit fill oder area ?
Hallo Niklas, mein Vorschlag wäre, eine Matrix aus lower und upper zu bilden und diese an area zu übergeben, und die Fläche zwi...

3年弱 前 | 1

| 採用済み

解決済み


The Piggy Bank Problem
Given a cylindrical piggy bank with radius g and height y, return the bank's volume. [ g is first input argument.] Bonus though...

4年以上 前

解決済み


Repeat string n times
* You will be provided a string (s = 'string1_') * a starting point (num1 = 6) (always bigger than or equal to zero) * and n (...

5年以上 前

解決済み


Times 2 - START HERE
Try out this test problem first. Given the variable x as your input, multiply it by two and put the result in y. Examples:...

5年以上 前

解決済み


How to subtract?
*&plusmn &plusmn &plusmn &plusmn &plusmn &plusmn &plusmn &plusmn &plusmn &plusmn &plusmn* * Imagine you need to subtract one...

8年以上 前

解決済み


Sum all integers from 1 to 2^n
Given the number x, y must be the summation of all integers from 1 to 2^x. For instance if x=2 then y must be 1+2+3+4=10.

14年弱 前

解決済み


Which values occur exactly three times?
Return a list of all values (sorted smallest to largest) that appear exactly three times in the input vector x. So if x = [1 2...

14年弱 前

解決済み


The Hitchhiker's Guide to MATLAB
Output logical "true" if the input is the answer to life, the universe and everything. Otherwise, output logical "false".

14年弱 前

解決済み


Sort a list of complex numbers based on far they are from the origin.
Given a list of complex numbers z, return a list zSorted such that the numbers that are farthest from the origin (0+0i) appear f...

14年弱 前

解決済み


Create times-tables
At one time or another, we all had to memorize boring times tables. 5 times 5 is 25. 5 times 6 is 30. 12 times 12 is way more th...

14年弱 前

解決済み


Return the 3n+1 sequence for n
A Collatz sequence is the sequence where, for a given number n, the next number in the sequence is either n/2 if the number is e...

14年弱 前

解決済み


Check if sorted
Check if sorted. Example: Input x = [1 2 0] Output y is 0

14年弱 前

解決済み


Test for balanced parentheses
Given the input inStr, give the boolean output out indicating whether all the parentheses are balanced. Examples: * If ...

14年弱 前

解決済み


Renaming a field in a structure array
MATLAB has a <http://www.mathworks.com/help/techdoc/ref/setfield.html setfield> and a <http://www.mathworks.com/help/techdoc/ref...

14年弱 前

解決済み


Make a checkerboard matrix
Given an integer n, make an n-by-n matrix made up of alternating ones and zeros as shown below. The a(1,1) should be 1. Example...

14年弱 前

解決済み


Weighted average
Given two lists of numbers, determine the weighted average. Example [1 2 3] and [10 15 20] should result in 33.333...

14年弱 前

解決済み


Pizza!
Given a circular pizza with radius _z_ and thickness _a_, return the pizza's volume. [ _z_ is first input argument.] Non-scor...

14年弱 前

解決済み


Most nonzero elements in row
Given the matrix a, return the index r of the row with the most nonzero elements. Assume there will always be exactly one row th...

約14年 前

解決済み


Is my wife right?
Regardless of input, output the string 'yes'.

約14年 前

さらに読み込む