回答済み
How to edit plots?
Using your sample code, I do not see what the error is. However I made a few changes to the code that I believe make the output ...

4年以上 前 | 0

回答済み
How to randomize audio files
It looks to me that the line aud_file=strcat('C:\toolbox\aud_file\',audio_files(i).name); is where you get a song. Since the ...

4年以上 前 | 1

| 採用済み

回答済み
Trajectory animation using coordinate points
I would do it like this: % x1,x2,y1,y2,z1,z2 are your coordinate vectors tstep = .1; % the amount of time between each value i...

4年以上 前 | 1

回答済み
How would you plot a graph which a ball then rolls down (say a y=x^2 graph)
I attached a .m file I created that should work pretty well. It uses a numerical solution by calculating the slope at discrete t...

4年以上 前 | 1

回答済み
Sorting a table in Matlab
Yes, you can do it with the sortrows function. Here is an example: A = [1 2 4 5 3 6 5 6]; B = {'a', 'b', 'c', 'e', 'f', 'ba', ...

4年以上 前 | 1

| 採用済み

回答済み
So i wanted to add a column to this table.
So one big problem here is that you do not have a table. You have a matrix. And matrices cannot have strings and numbers in them...

4年以上 前 | 1

回答済み
hey guys im trying to plot this in 3D but i keep getting an error, "Data cannot have more than 2 dimensions."
So the issue is that plot3 takes either a vector or a 2d matrix. Since you are plotting it as points you do not actually need to...

4年以上 前 | 2

| 採用済み

回答済み
Index exceeds matrix dimensions
It appears that for some reason fileNameArray is not being populated with values in the line fileNameArray = dir('*.dat'); Ma...

4年以上 前 | 0

回答済み
How to find specific values in a table, and create an array from rows containing those values?
Here is my go at it. % Create my table so you know what I am testing with. names = {'ssrp' , 'ssrp','tghh'}'; values = [123, ...

4年以上 前 | 0

| 採用済み

回答済み
Index exceeds array bounds error
The problem is a0. In the line hzrd(i,j)=exp(a(i)+b*w(i,j)) ; a needs to be have at least k elements for it to work. You set ...

4年以上 前 | 1

| 採用済み

回答済み
how to store multpile files which has been loaded first in the same script ,in the new variable , through loop
So, I believe this answer could be done using the eval function but since that function is highly discouraged here is my attempt...

4年以上 前 | 0

回答済み
Why are spaces ignored when a character string is scanned?
This is because of the way fscanf reads it in. If you go to the linked documentation and scroll down to Character Fields, it not...

4年以上 前 | 0

回答済み
How many years to double initial investment with various interest rates
If I understand the equation you posted correctly lets walk through this. S = total amount after n years if P was initially inve...

4年以上 前 | 0

回答済み
Generating a grid around circles in an image
So I felt like making it interactive so I used the built in guide function in matlab to create a GUI. Attached are the two files...

4年以上 前 | 1

| 採用済み

回答済み
What sort of a filter/method can be applied to smoothen sharp peaks on a surface?
In general, if you want to smooth out peaks you want to get rid of the high frequency content, aka a low pass filter. The easies...

4年以上 前 | 0

回答済み
How to plot for different values of parameters on one run?
Matlab actually has a page on this called Parameterizing Functions. Using one of the options for that I believe this will do i...

4年以上 前 | 0

| 採用済み

回答済み
How to create an animated plot of a temperature data with holding on each year?
Alright lets see how much I can help with. First off to gradient between colors I have a little way down below. I get the rgb ...

4年以上 前 | 1

| 採用済み

回答済み
can someone please help me to find out mistake
Here you go. A few things needed to be changed. First the change that Torsten initially pointed out. Then we further change it t...

4年以上 前 | 0

回答済み
storing output of for loop
I believe your goal can be more easily solved using the built in Matlab function reshape. It looks to me like you have a 1x30000...

4年以上 前 | 0

| 採用済み

回答済み
Is it possible to run a function that requires input variables when they are declared later in the function?
It looks to me that the main problem is that you are using the first function wrong. When you define the function function [ar...

4年以上 前 | 0

| 採用済み

回答済み
Log Simulink simulation data to structure element
The way that I would do it is this. In your main simulink model, right click anywhere go to ModelProperties -> Callbacks -> Stop...

4年以上 前 | 1

| 採用済み

回答済み
different titles for animation
I would suggest creating the title like this: months = {'Jan', 'Feb', ...}; years = num2str((1979:2018)'); for i = 1:40 ...

4年以上 前 | 1

| 採用済み

回答済み
how to save the index during for loop?
A couple different things can fix this, but I would suggest this one just creating the variable a again after your for loop -> ...

4年以上 前 | 0

回答済み
how to solve Index exceeds the number of array elements (1).
What this error is saying is that at some point in that line you are exceeding the number of elements in an array. The (1) is in...

4年以上 前 | 1

| 採用済み

回答済み
How to display the two biggest blobs in terms of area?
In the line biggestBlob=ismember(labeledImage,indexOfBiggest(1)); you are finding the biggest by looking at the first index i...

4年以上 前 | 1

| 採用済み

回答済み
Changing colors in a stacked bar graph to specific ones?
In order to figure out how that code works I'd suggest first adding a pause(1) before the end of the for loop. This way you can ...

4年以上 前 | 0

回答済み
How to convert a continuous figure to discrete?
A couple different ways to do this. When plotting discrete values it is often preferred to use stem instead of plot. It does not...

4年以上 前 | 0

| 採用済み

回答済み
Adding columns to tables
Check out https://www.mathworks.com/help/matlab/matlab_prog/add-and-delete-table-variables.html if you have not. It has many wa...

5年弱 前 | 0

回答済み
Merge up sweep and down sweep together in the same figure to get a chirp up and down
It seems like everything you've done so far is good. To merge two matrices you can use this simple command: chirp = [Tx1 Tx2]; ...

5年弱 前 | 0

| 採用済み

回答済み
Controlling a generic engine block
It sounds like you want a very binary controller. If a velocity is larger than a threshold do one thing, if not do another. If t...

5年弱 前 | 0

さらに読み込む