回答済み
Why don't I get a direct error message for an undefined mask variable of a Simulink block if this is a partly undefined structure element?
Looks like by default it doesn’t highlight in red when it’s a struct field which is undefined. You could either give each ma...

2年以上 前 | 0

| 採用済み

回答済み
How to pass vector variable in Simulink Bus?
Create Bus Object:Inside the MATLAB Function block, define the bus object using the Simulink.Bus.createObject function. This sho...

2年以上 前 | 0

回答済み
How to pass a struct to a model reference instance?
elems(1) = Simulink.BusElement; elems(1).Name = 'Chirp'; elems(2) = Simulink.BusElement; elems(2).Name = 'Sine'; S...

2年以上 前 | 0

回答済み
Question about a way variable appears
celldisp(Variables) Variables{:}

2年以上 前 | 0

回答済み
for loop does not iterate
x_realroots = x_roots(abs(imag(x_roots)) < 1e-4) % 1e-4 tolerance

2年以上 前 | 1

回答済み
reading vector data sets from simulink model back into matlab .m file to create variable and then manipulate operation of simulink model
why not use a MATLAB Function block in your model and call the script as a function within this block? YOu have two more optio...

2年以上 前 | 0

| 採用済み

回答済み
Multiplying a cell array element with an element of a matrix gives wrong result
cellarray{this} * vpa(matrix(that))

2年以上 前 | 1

回答済み
record all signals on all hirachies of a Simulink model
<https://de.mathworks.com/help/simulink/ug/export-simulation-data-1.html>

2年以上 前 | 0

回答済み
配列の並び替え
a = 1 : 9; assert(~rem(prod(size(a)), 3), 'not multiples of 3') reshape(a, 3, []) reshape(a.', 3, []) reshape(a, 3...

2年以上 前 | 0

| 採用済み

回答済み
行列をナンバリングして作成する
p = perms(-1 : 2 : 1); c = num2cell(p, 2); celldisp(c)

2年以上 前 | 0

回答済み
How do I form a matrix from an array of rows and columns
A(a + (b-1)*size(A,1)) = 0

2年以上 前 | 1

回答済み
Multiplying and finding inverse of a matrix.
It’s inv() not invs()

2年以上 前 | 0

回答済み
I'm new to matlab and I use 2017b version, may I ask why I can't connect the block?
Use a Simulink-PS Converter before you connect to the q port of revolute

2年以上 前 | 0

回答済み
Need to solve Fourier Series script
plot(x,y,'-',x,f,'--',x,g,'-','LineWidth',5); legend('Exact','Fourier (3 terms)','Fourier (6 terms)'); % use this line before ...

2年以上 前 | 0

| 採用済み

回答済み
How to pass multiple signals in Fractional-order Integration in SIMULINK (MATLAB)?
Use a For - Iterator subsystem which encapsulates this Integrator block. For the iterator you need to feed in the output of the ...

2年以上 前 | 0

回答済み
Full Bridge Rectifier simulation
<https://www.mathworks.com/help/simscape/ug/full-wave-bridge-rectifier.html>

2年以上 前 | 0

回答済み
Matlab function assumed inputs
Use nargin() to determine if number of inputs are less than three assign the default values to alpha and beta else feed in the a...

2年以上 前 | 0

回答済み
My 'to workspace' block isn't working
out.V_BT % in command window to access the values of the variable

2年以上 前 | 0

回答済み
Error: Index exceeds the number of array elements
momentum_def was defined as a scalar before the loop but you are trying to access the second element in the first interation of ...

2年以上 前 | 0

回答済み
Define variable based on input condition
psi = ((0 <= th2) & (th2 < 180)) .* psi_pos + ((180 <= th2) & (th2 < 360)) .* psi_neg; plot(th2, psi)

2年以上 前 | 0

| 採用済み

回答済み
Call Graphics Array to Make Figures Later In Code
h = cell(width(exampledata), 1) % outside loop for k = 1 : width(exampledata) h{k} = fig("Name" + k); % do what you w...

2年以上 前 | 0

回答済み
Obtain your license number by running MATLAB and typing ‘license’ at the command prompt or contact your MATLAB administrator.
As it suggests type license %or ver at the command window

2年以上 前 | 0

回答済み
Piecewise function graph help
F = (r < d) * 0 + ((r >= d) & (r <= r1_max)) .* ((s+2.*sqrt(r.^2-d^2))./(L-s)) + ((r >= r1_max) & (r <= r2_max)) .* ((sqrt(r.^...

2年以上 前 | 0

回答済み
I have two sets of data points named X and Y, each of which is a 730x1 matrix. The data are very close to each other, how can I plot a smooth curve between the data
<https://www.mathworks.com/help/matlab/data_analysis/data-smoothing-and-outlier-detection.html> choose the one that suits you th...

2年以上 前 | 0

| 採用済み

回答済み
where is signalbuilder in simulink 2023b
<https://de.mathworks.com/help/simulink/slref/signaleditorblock.html Signal Editor Block> is recommended than Signal builder blo...

2年以上 前 | 1

回答済み
discrete fixed point and their stability
eq1(i)

2年以上 前 | 0

質問


Constant block doesn't accept array
Not sure why the constant block doesn;t give the output as array. Is there any to make it possible?

3年以上 前 | 3 件の回答 | 0

3

回答

質問


Why does the output of audioread() gives samples less than shown in audioinfo() ?
for some reason there is no problem in mac but in windows

4年以上 前 | 1 件の回答 | 0

1

回答

回答済み
Convert time vector of Year, Month, Day, Hours, Minute to Decimal format
doc ymd doc hms

4年以上 前 | 0

回答済み
How to find first instance of a value in array?
help find % read the third explanation

5年弱 前 | 0

さらに読み込む