回答済み
how to find y axis value's opposite x axis value
If both vectors are of same size, find the index of your variable from y and use it to pick the value at that position in x. A s...

約11年 前 | 0

| 採用済み

回答済み
Need to write pre-written excel sheet using xlswrite or other function
You can also use table functions. For example T = readtable('Book.xlsx') newdata = [6 6 6 6 6 6 6 6 6 6]; newdata = n...

約11年 前 | 0

回答済み
Why does my vector repeat numbers?
for j = 1:length(x)-1 % Find jth smallest element imin = j; for i = (j + 1):length(x) if (x(i) < ...

約11年 前 | 0

| 採用済み

回答済み
How to plot colorbar in matlab?
You should use filled contour plot with legend. Check contourf() and clegendm()

約11年 前 | 0

回答済み
please tell me how to perform color transform
color_img = imread('image.png'); gray_img = rgb2gray(color_img); imshow(gray_img)

約11年 前 | 0

| 採用済み

回答済み
Ordinary Differential Equations Help
Did you check this? http://uk.mathworks.com/help/symbolic/mupad_ref/ode-solve.html

約11年 前 | 0

回答済み
how to run an m.file by another m.file ?
You just need to write the file name on the specific line of your program and make sure the other file exist in the same directo...

約11年 前 | 4

| 採用済み

回答済み
How can I generate/use variable duty cycle PWM generation block in MATLAB?
Did you check the PWM Generator blocks in Simscape toolbox? http://uk.mathworks.com/help/physmod/sps/powersys/ref/pwmgenerat...

約11年 前 | 0

回答済み
How to design a controller in a three-phase PWM rectifier?
The general idea in such control design is to derive the controller parameters based on plant parameters using standard optimum ...

約11年 前 | 0

回答済み
Back-EMF of PMSM
If you're using Permanent Magnet Machine from Simscape library, I think, it has backemf as output signal. If you're building the...

約11年 前 | 1

| 採用済み

回答済み
square of AC voltage in simulink ???
Normally you cannot connect physical signal ports to simulink signal ports. In such cases you should use either PS-Simulink conv...

約11年 前 | 1

回答済み
How can we plot on right Y axis?
You can use YAxisLocation. Check the below link. http://de.mathworks.com/help/matlab/ref/axes-properties.html

約11年 前 | 0

| 採用済み