回答済み
連続時間系のサンプリングと離散フーリエ変換
https://www.mathworks.com/help/matlab/ref/fft.html a good starting point

2年以上 前 | 0

回答済み
theory parts from the documentation -usage
The volunteers here are there to contribute to questions related to coding. For legal questions you would be better off to conta...

2年以上 前 | 0

質問


Is there a way to viewmark as images?
Any possible way to extract viewmarks from Simulink as images?

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

1

回答

回答済み
Moving specific .mat files to a new folder
help movefile

2年以上 前 | 0

回答済み
Data Plotting in a Single Figure
U = setdiff(10 : 10: 100, 80 : 10 : 90); V = 1e2 : 50 : 450; X = sort(randi(400, size(U))); Y = sort(randi(98, size(U))) .*...

2年以上 前 | 0

| 採用済み

回答済み
how to sum a result with multiple values
You literally answered your own question, just use sum() help sum

2年以上 前 | 1

| 採用済み

回答済み
How to use Solver?
Use vpasolve()

2年以上 前 | 0

| 採用済み

回答済み
Index a Matrix that gets smaller
for ind = size(RAW): -1 : 2

2年以上 前 | 0

| 採用済み

回答済み
Error on my matrix
t_pn = (im2double(t) + p.' / 2) / 2;

2年以上 前 | 0

回答済み
i have an Error using ^
Change * to .* in all the places.

2年以上 前 | 0

| 採用済み

回答済み
Save a double array to a text file
https://www.mathworks.com/matlabcentral/answers/4175-how-to-save-a-matrix-as-text-file#answer_5892

2年以上 前 | 0

回答済み
problem in solving matrix
I = A \ V

2年以上 前 | 0

回答済み
Can't solve for x with (a = y/x)
syms y a x eqn = a == y/x; s = solve(eqn, x)

2年以上 前 | 0

回答済み
solving symbolic array to output a numerical solution
struct2array(Ma3)

2年以上 前 | 0

回答済み
removing rows from a timetable
load combined_observed_vs_sim_timetable combined_data(1 : 12, :) = [ ]

2年以上 前 | 0

回答済み
Array indices must be positive integers or logical values.
ii = 0.01:0.02:0.99; w1_temp= ii; w2_temp= 1-ii; Rp_temp= w1_temp*mean(R_2(:,1))+w2_temp*mean(R_2(:,2)); ...

2年以上 前 | 0

回答済み
Why does contains(var1, var2) find matches in two different string arrays?
ch_names = {'FP1','FPz','FP2','AF7','AF3','AF4','AF8','F7','F5','F3',... 'F1','Fz','F2','F4','F6','F8','FT7','FC5','FC1...

2年以上 前 | 0

| 採用済み

回答済み
Save variable of workspace in another folder
save('C:\Users\Desktop\folder\POWER.mat', 'POWER')

3年弱 前 | 4

| 採用済み

回答済み
Non-functioning function
if length(N) > 1

3年弱 前 | 0

| 採用済み

回答済み
How do I save filenames in a for loop for later access?
C = cell(nnz(~fn(k).isdir), 1); % before loop function C = filnamn(katalog) % displays the names of all files in given diretor...

3年弱 前 | 0

| 採用済み

回答済み
a vector of hours
hours(0 : 23)

3年弱 前 | 0

回答済み
Why do I get the error "Unrecognized function or variable" with this
I don't know why you deleted your question and changed your name. 1) Why do you name a variable as the same name of a FUNCTION....

3年弱 前 | 0

| 採用済み

回答済み
Integral2 Error message
F = @(x,y) x./y + y./x q = integral2(F,1,2,1,4)

3年弱 前 | 0

| 採用済み

回答済み
How do I indicate phase changes on my velocity versus time plot on MATLAB?
t = [1.85 2.87 3.78 4.65 5.5 6.32 7.14 7.96 8.79 9.69]; d = 10: 10 : 100; v = gradient(d) ./ gradient(t); figure(1) dvdt = g...

3年弱 前 | 0

回答済み
Error with plotting a function
K = 10; r = .1; t = 0:1:100; solution1 = @(t,y) K .^ (1 - (exp(-t*r))); plot(t,(K.^(1 - (exp(t*r*-1)))), '-b');

3年弱 前 | 0

| 採用済み

回答済み
Specify the y value where the graph should start
%Variabler A_sveip = 2.27; luft_tett = 1.225; %Virkningsgrad v_0k5 = [0:0.5:30.5]; P_0k5 = [0 0 0 0 0 20 30 50 70 95 120 ...

3年弱 前 | 0

| 採用済み

回答済み
n乗根が小数で表されてしまうがn乗根のまま表記して欲しい
sqrt(sym(2)) sqrt(2)

3年弱 前 | 1

| 採用済み

回答済み
Position of element in a row
Use second output of find() help find

3年弱 前 | 0

| 採用済み

回答済み
Breaking equations down into parts while retaining output
atimesb = a * b; ctimesd = c * d; eqn = MyTotal == atimesb + ctimesd

3年弱 前 | 0

| 採用済み

回答済み
Unrecognized function or variable
Following Steven’s answer would clear that error but you will have a following error, so change that part of your code to the fo...

3年弱 前 | 0

さらに読み込む