回答済み
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....

4年以上 前 | 1

回答済み
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...

4年以上 前 | 0

回答済み
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.

4年以上 前 | 0

| 採用済み

回答済み
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 ...

4年以上 前 | 0

| 採用済み

回答済み
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...

4年以上 前 | 0

回答済み
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 ...

4年以上 前 | 0

| 採用済み

回答済み
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...

4年以上 前 | 0

| 採用済み

回答済み
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...

4年以上 前 | 0

| 採用済み

回答済み
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...

4年以上 前 | 1

回答済み
How to find computational time?
You might be looking for cputime()

4年以上 前 | 0

回答済み
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...

4年以上 前 | 0

| 採用済み

回答済み
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...

4年以上 前 | 0

回答済み
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...

4年以上 前 | 0

回答済み
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 ...

4年以上 前 | 0

| 採用済み

回答済み
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...

約5年 前 | 0

| 採用済み

回答済み
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 ...

約5年 前 | 0

回答済み
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);

約5年 前 | 0

回答済み
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...

約5年 前 | 1

| 採用済み

回答済み
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...

約5年 前 | 0

| 採用済み

回答済み
"s" in Numerator in First-Order Filter
Use a transfer function block

約5年 前 | 0

回答済み
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...

5年以上 前 | 0

回答済み
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...

5年以上 前 | 0

回答済み
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...

5年以上 前 | 0

回答済み
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...

5年以上 前 | 1

| 採用済み

回答済み
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...

5年以上 前 | 1

回答済み
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). ...

5年以上 前 | 0

回答済み
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...

5年以上 前 | 1

回答済み
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...

5年以上 前 | 0

| 採用済み

回答済み
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...

5年以上 前 | 0

回答済み
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 ...

5年以上 前 | 0

さらに読み込む