Respondida
how to find zero value with find
Matlab will index down the columns first. It appears that you want to go across the rows first. So, just transpose the matrix....

más de 4 años hace | 1

Respondida
Illegal use of 'end' in Simulink Coder when copying code from MATLAB to simulink function block
It looks to me like the problem in that screenshot is a typo: "Heaating" vs. "Heating" in the variable name which you are trying...

más de 4 años hace | 0

Respondida
real simulation time in Matlab function code
Add an input to the Matlab function block and connect it to the output of a Clock block.

más de 4 años hace | 0

| aceptada

Respondida
How can I represent this state space in MATLAB Code?
You need to replace 7sin(0.05) with 7*sin(0.05). Also, Matlab variable names can't have a space in them so close loop is not a ...

más de 4 años hace | 0

| aceptada

Respondida
Why do I receive "Machine_Problem_8" requires more input arguments to run?
How did you call your function? You can't just press the "Run" button in the editor to call a function that expects input argum...

más de 4 años hace | 0

Respondida
how to combine two matrices?
Maybe this is what you want for #1: Pg = 1; % example value for Pg A=[Pg; 0.5;0.6;0;0;0] B=[0;0;0;0.7;0.7;0.7] C = A+B For ...

más de 4 años hace | 0

| aceptada

Respondida
How to explain the code below in the loop so I reduce the lines
This would be a lot easier if all of the csv files were in the same folder. You could then use the dir cmd to get a list of the...

más de 4 años hace | 0

| aceptada

Respondida
Angular positons are wrong how to correct them ?
I believe that the angles are the angular displacements of the individual joints. If you wish to plot the total angular displac...

más de 4 años hace | 0

| aceptada

Respondida
Simple Encryption Code check
You are only saving one element of x. You need to index x like you did i. So: function [coded] = caesar(vector, shift) i = d...

más de 4 años hace | 1

Respondida
How to find computational time?
You might be looking for cputime()

más de 4 años hace | 0

Respondida
Seal a cylinder in a scattered plot
Try this (I'm skipping the scatter portion for this example and assuming that you want the 'caps' that seal the ends to have the...

más de 4 años hace | 0

| aceptada

Respondida
Matlab 2019b handle through script
Depending on your OS, read one of these two solutions: https://www.mathworks.com/matlabcentral/answers/97204-how-can-i-pass-inp...

más de 4 años hace | 0

Respondida
Obtaining vertical and horizontal values from polarplot
The polarplot function won't give you the x and y data. So, you need to calculate it yourself. I've made up r and theta values...

más de 4 años hace | 0

Respondida
Removing specific value from cell array
There may be a more compact (i.e., single line) way to do this but this works and is not too complex: A={[1 2 4 6 7]; [1 2 5 7 ...

más de 4 años hace | 0

| aceptada

Respondida
Plot functions in MATLAB
Since I don't have the Statistics and Machine Learning Toolbox (for the unifrnd() function), I used the base Matlab function ran...

casi 5 años hace | 0

| aceptada

Respondida
Creating a sound with certain obtained frequencies
Try this. Since you didn't provide f0 in your example code, I just picked some frequencies. Also, I changed to a fixed output ...

casi 5 años hace | 0

Respondida
How to separate plot titles on single line? [solved]
Try this: title(sprintf('%s %s %s %s %s %s', head, neck, helmet, impact, energy, rep);

casi 5 años hace | 0

Respondida
How to know what toolboxes and or functions my code in appdesigner is using?
Try this: matlab.codetools.requiredFilesAndProducts('top_level_function.m'); I know this works with regular functions. Not so...

casi 5 años hace | 1

| aceptada

Respondida
How to make rotate the circular pattern of balls in a while loop?
I think you are very close to what you want. All I had to do to make this animate is to comment out the `hold on` line and incr...

casi 5 años hace | 0

| aceptada

Respondida
"s" in Numerator in First-Order Filter
Use a transfer function block

alrededor de 5 años hace | 0

Respondida
What's wrong whith my schedule ?
There are several things wrong with this code. First while E~=0,2 is not valid Matlab syntax. Replace the , with a . if you...

alrededor de 5 años hace | 0

Respondida
Turning a 2x80 to an 80x80
It really depend on how you want to expand the matrix. If I understand what you want, you could try something like this: initi...

alrededor de 5 años hace | 0

Respondida
Proper usage of GoTo to avoid infinite loop
It appears that you are attempting to create a recursive algorithm. If so, replace "%JUMP TO RUN DIESEL GENERATOR!!!" with anot...

alrededor de 5 años hace | 0

Respondida
How to add animatedline to formatted figure?
From what you have posted, you have explicitly requested a new figure with the line: figure(); This will create a new figure a...

alrededor de 5 años hace | 1

| aceptada

Respondida
Enter the following variables: a= 123456, b=31/4 , c=cos(π/8). Now calculate
You really should go through the lessons in the Matlab Onramp tutorial if you don't understand how to do these very basic things...

alrededor de 5 años hace | 1

Respondida
Only gu values tu ?
To test for integer values of double numbers (doubles are the default numeric type in Matlab), I would suggest using mod(m,1). ...

más de 5 años hace | 0

Respondida
hello everbody hahzu contain
Your code does what you want if you pass it a character array. For example if you pass '11', you get 3 as a result. Note the si...

más de 5 años hace | 1

Respondida
How to invert a Transfer function in Simulink?
Transfer functions are not allowed to have a higher order in the numerator than in the denominator (more zeros than poles). Thi...

más de 5 años hace | 0

| aceptada

Respondida
Getting values from balance into matlab
Try this: number = sscanf(a, '%*c %*c %f%*c'); The * characters tell sscanf to ignore (not return) those fields. You can lear...

más de 5 años hace | 0

Respondida
How would I add a label to a variable?
Without extra toolboxes, and assuming that you are programming your 'converter' as a function and you wish to print the results ...

más de 5 años hace | 0

Cargar más