Risposto
converting to a matrix
data = importdata('file.txt')

quasi 11 anni fa | 0

Risposto
Warnings for Non-existent Ports in a Matlab Function Block
If the S-function was generated in Real time workshop/Simulink coder you can right click MATLAB I1 and select Look under mask. Y...

quasi 11 anni fa | 0

| accettato

Risposto
Adding all the elements of a 1-d matrix/array in Simulink
Use the Add block with one single + in the "list of signs". See attached example.

quasi 11 anni fa | 1

Risposto
How to give an initial value to a variable in simulink "matlab function"
It looks like the reason for the compile error is that hitout may not be set at all, for example if hitin = -1. Change the el...

quasi 11 anni fa | 0

Risposto
help with vectors MatLab?
Your question is a bit unclear. If you want to create a vector H containing alternating 0's and 1's, starting and ending with 0 ...

quasi 11 anni fa | 1

Risposto
GUI set handles don't pass value
fM = get(hObject,'String') will return a string. To compare it to 16 in the if statement you need to convert it to a number. One...

quasi 11 anni fa | 0

| accettato

Risposto
Character for the real numbers - MATLAB
\Re ------ Based on the comment below that \Re is not the desired character: It looks like you need to install the math...

quasi 11 anni fa | 0

| accettato

Risposto
How to run program with .tmp extension in matlab
Rename the file (replace the dot before tmp with an underscore, for example). Matlab cannot handle dots in m-file names. The...

quasi 11 anni fa | 0

| accettato

Risposto
how to adjust the block parameter ?
If Fig7x18 is a simulink block: Right click on the block, select Block Properties. In the tab Callbacks there is a list named...

quasi 11 anni fa | 0

Risposto
<randum number generation
If we assume that the first day in the array also is the start of a week it is necessary to generate 52 random days during a 365...

quasi 11 anni fa | 0

Risposto
How to plot a function ?
function fx = myFunction(a,b) x=0:0.1:2; % Create the x vector with step size 0.1 fx = zeros(size(x)); % Initialize the fun...

quasi 11 anni fa | 0

Risposto
Real - Time Simulink Data
To run a model in close to realtime you can for example use this: http://www.mathworks.com/matlabcentral/fileexchange/30953-simu...

quasi 11 anni fa | 0

Risposto
How can I remove the power of a matrix?
I made a script that allows you to print a matrix to the command window with a selected precision, see attached file. The scr...

quasi 11 anni fa | 0

| accettato

Risposto
Help me download Matlab 2013b please. Its really urgent
# Click the MathWorks.com link on the top right of the Answers page. # Click on My Account on the top right # Click Get Licens...

quasi 11 anni fa | 0

Risposto
What function does the following code perform?
The d can apparently be used instead of e for exponent number formats, i.e. the following are equal: 1d-8 1e-8 10^-8 ...

quasi 11 anni fa | 0

Risposto
index error for find function
I misunderstood the question, removed my response but kept the answer to not lose the comments below.

quasi 11 anni fa | 0

Risposto
transfer signals in simulink
If I understand your question correctly you could use From and Goto blocks. I would however strongly discourage the use of these...

quasi 11 anni fa | 1

| accettato

Risposto
normalize a row vector
B = A./sum(A);

quasi 11 anni fa | 1

| accettato

Risposto
how to get the values of each cell in the cell array?
According to the comment "i have to make some calculation.. i need to substact each element from the cell with its mean value": ...

quasi 11 anni fa | 0

Risposto
How to fix the error?
In your pasted code it seems like you have used the slightly tilted ’ instead of ' for the apostrophe (or whatever the correct n...

quasi 11 anni fa | 0

| accettato

Risposto
How can control the phase delay of the signal generated by "Pulse Generator" block externally?
If you have a limited range of number of samples that your signal should be delayed you could build a block for variable delay u...

circa 11 anni fa | 0

| accettato

Risposto
How can control the phase delay of the signal generated by "Pulse Generator" block externally?
If I understand your question correctly it could probably be solved by placing a "Variable time delay" block after the pulse gen...

circa 11 anni fa | 0

Risposto
How can I generate a vector of 19 numbers in such a way that all 19 numbers are repeated 10 times, but 10 consecutive numbers are not equal?
My suggestion is to start with any valid vector according to your constraints. In the example below I have chosen the most obvio...

circa 11 anni fa | 0

| accettato

Risposto
Why is this script so slow and how can i make it faster?
In addition to Jos' answer, the most time consuming part of your code seems to be printing out p every time it is increased by o...

circa 11 anni fa | 0

Risposto
Error using strcat or horzcat
If I create one file for each of the functions (rowget.m and firstRecord.m), it seems to be working. I do not know the cause of ...

circa 11 anni fa | 0

| accettato

Risposto
How to convert MATLAB variables to Simulink Parameters ?
There may be some better way to do it, but this works. The storage class below is the one I use when I need to make a parameter ...

circa 11 anni fa | 0

| accettato

Risposto
getting rid of empty cells in a cell array
First, check which cells that are empty using the function isempty. Since isempty does not accept cell arrays as input, you can ...

circa 11 anni fa | 2

| accettato

Risposto
How can I change the folder to be browsed upon when pushbutton is clicked?
If it works like uigetfile, you should be able to pass the desired folder as an argument, [path,user_cance]=imgetfile('C:\U...

circa 11 anni fa | 0

| accettato

Risposto
why a result changed, when i was repeated a neural network program?
When you restart Matlab, the random number generator is reset which is likely the reason that you can repeat the result after Ma...

circa 11 anni fa | 0

Risposto
How do I change my username in the license file?
You need to change the username in the mathworks license center and download the license file again. <https://www.mathworks.c...

circa 11 anni fa | 1

Carica altro