回答済み User input in a struct
You cannot have space in structure field name. And also as @Dyuman Joshi mentioned you should not use quotes when you assign it....
回答済み how to fix the scale in the output window
You need to be more specific for a better answer but here is my attempt:
If you just want to see x axis from -0.1 to 0.1 then ...
2年弱 前 | 0
| 採用済み
回答済み How to set continue function?
You are looking for assert() function.
When you condition is satsified
assert(1>0,'STOPPED THE CODE!')
fprintf('Code continue...
2年弱 前 | 0
| 採用済み
回答済み Foor loop; iteration
You set your tolerance to 1e-2 so your for loop terminates when abs(V-V_Check) becomes less than 1e-2.
% here you basically def...
約2年 前 | 0
回答済み Figure Output blank but no errors
When you call freqz with outputs, it does not draw a plot as written on the description of the function. So you need to do
[h,w...
回答済み Understanding the following lines of code
My guess is the code is used to generate a name for a mat file after performing some postprocessing on raw data from 'file_px'. ...
回答済み Defining an improper function in Simulink
Firstly, I do not think you understand the viscous friction model. Ms2+Ws is probably not what you think it is.
To answer your...