Andy L
Followers: 0 Following: 0
MATLAB user since the start of Uni. Full time Engineer - I also play Rugby for a dose of violence at the weekends. Professional Interests: Powertrain Engineering, Control Systems, Systems Engineering.
Feeds
已回答
Problem reading my results
Try format long in your code. MATLAB should recognise that these are just the short form of these numbers.
Problem reading my results
Try format long in your code. MATLAB should recognise that these are just the short form of these numbers.
10 years 前 | 0
已回答
How to find a trend in a sequence?
Try this thread for a similar problem <https://www.mathworks.co.uk/matlabcentral/newsreader/view_thread/244401 https://www.m...
How to find a trend in a sequence?
Try this thread for a similar problem <https://www.mathworks.co.uk/matlabcentral/newsreader/view_thread/244401 https://www.m...
10 years 前 | 0
已回答
Storing points into an array
For the first question I think that if you change the following line of code p = img('75,104,361'); to p = img(75,1...
Storing points into an array
For the first question I think that if you change the following line of code p = img('75,104,361'); to p = img(75,1...
10 years 前 | 0
| 已接受
已回答
ode45 not enough input argument
You need to vectorise your inputs to ode1 as below: %Ode function: function dTdt = ode1(t,T,d,e) becomes functio...
ode45 not enough input argument
You need to vectorise your inputs to ode1 as below: %Ode function: function dTdt = ode1(t,T,d,e) becomes functio...
10 years 前 | 0
已回答
how do i generate samples of two input xor gate for neural networks
To generate a "random" binary sequence check out this similar thread! <http://www.mathworks.co.uk/matlabcentral/answers/114656-r...
how do i generate samples of two input xor gate for neural networks
To generate a "random" binary sequence check out this similar thread! <http://www.mathworks.co.uk/matlabcentral/answers/114656-r...
10 years 前 | 1
已回答
how to flip the inputs of an simulink block
See the image below. A variable switches the input on the switch blocks - see <http://www.mathworks.co.uk/help/simulink/slref/sw...
how to flip the inputs of an simulink block
See the image below. A variable switches the input on the switch blocks - see <http://www.mathworks.co.uk/help/simulink/slref/sw...
10 years 前 | 0
已回答
FFT (fast fourier transform) matlab default example (need explanation)
L is the length of your signal. It is used to determine the time vector t and so on. <http://www.mathworks.co.uk/help/matlab/re...
FFT (fast fourier transform) matlab default example (need explanation)
L is the length of your signal. It is used to determine the time vector t and so on. <http://www.mathworks.co.uk/help/matlab/re...
10 years 前 | 1
| 已接受
已回答
How Can I Access Individual Powerpoint Shapes from a collection; actxserver COM objects
Solved it! Individual Shapes from the Shapes collection are accessed as Items. For a collection of two shapes (title and subt...
How Can I Access Individual Powerpoint Shapes from a collection; actxserver COM objects
Solved it! Individual Shapes from the Shapes collection are accessed as Items. For a collection of two shapes (title and subt...
10 years 前 | 1
| 已接受
提问
How Can I Access Individual Powerpoint Shapes from a collection; actxserver COM objects
Hello All, First time question asker! I am trying to access multiple shapes (Title and Subtitle) one at a time in order to...
10 years 前 | 1 个回答 | 0
1
个回答已回答
Counter using simulink block
There is a block - check <http://www.mathworks.co.uk/help/dsp/ref/counter.html counter> documentation!
Counter using simulink block
There is a block - check <http://www.mathworks.co.uk/help/dsp/ref/counter.html counter> documentation!
10 years 前 | 0
已回答
attempt to execute script varargin as a function
Try [A, B, C] = spagglom (1449, 'opts', IN) Where IN is an array of your variable number or arguments. Similar to what y...
attempt to execute script varargin as a function
Try [A, B, C] = spagglom (1449, 'opts', IN) Where IN is an array of your variable number or arguments. Similar to what y...
10 years 前 | 0
已回答
Collect response value with two for loops nested
It is only in the loops that the variable responses is changed to 5 x 4. If we deconstruct your code... numBlocks = 4; ...
Collect response value with two for loops nested
It is only in the loops that the variable responses is changed to 5 x 4. If we deconstruct your code... numBlocks = 4; ...
10 years 前 | 0
| 已接受
已回答
nested fnc / error:I nput argument "handles" is undefined.
You have not yet defined your 'handles' variable before passing it into your function 'click'. This is typically where you pass ...
nested fnc / error:I nput argument "handles" is undefined.
You have not yet defined your 'handles' variable before passing it into your function 'click'. This is typically where you pass ...
10 years 前 | 0
已回答
Can anybody fix this problem about GUI and mouse position please?
Firstly You need to add end statements to each function. See the following documentation on <http://www.mathworks.co.uk/help/mat...
Can anybody fix this problem about GUI and mouse position please?
Firstly You need to add end statements to each function. See the following documentation on <http://www.mathworks.co.uk/help/mat...
10 years 前 | 1
已回答
xlsread not reading text only excel file
First of all your filename. You use the following lines of code to set up your file name: file_name = input(prompt,'s'); ...
xlsread not reading text only excel file
First of all your filename. You use the following lines of code to set up your file name: file_name = input(prompt,'s'); ...
10 years 前 | 0
已回答
Help Creating Global Stiffness Matrix
First of all I would like to point out I don't know much about stiffness matrices - I've never had to use them before. There may...
Help Creating Global Stiffness Matrix
First of all I would like to point out I don't know much about stiffness matrices - I've never had to use them before. There may...
10 years 前 | 0
已回答
how can I do an integration window of a signal both in MATLAB and Simulink?
Hi Jorge. Have you considered running your simulink model from a MATLAB function, using the function <http://www.mathworks.co...
how can I do an integration window of a signal both in MATLAB and Simulink?
Hi Jorge. Have you considered running your simulink model from a MATLAB function, using the function <http://www.mathworks.co...
10 years 前 | 0
| 已接受