![photo](/responsive_image/150/150/0/0/0/cache/matlabcentral/profiles/2921750_1522092224680_DEF.jpg)
manoj saini
utu
Followers: 0 Following: 0
Professional Interests: communication/control/image processing
統計
All
Feeds
質問
is there any toolbox name as MODULAR SERVO SYSTEM toolbox in matlab
I AM WORKING ON A PROJECT ITS TOOLBOX NEED.............
12年弱 前 | 0 件の回答 | 0
0
回答質問
is there any toolbox name as MODULAR SERVO SYSTEM toolbox in matlab
hi..... actually i am working on a project....it need above toolbox....i am serching it.. but unable to get........plz help
12年弱 前 | 0 件の回答 | 0
0
回答質問
working on image compression project.........
hello i am working on an image compression project......i have done it using Huffmann and runlength method now i want to do i...
12年弱 前 | 1 件の回答 | 0
1
回答質問
By using polyder() and polyint() how we can solve following problems
let p=[3 5 6 2 1] %polynomial of degree 4 (1) How can i find 3rd order derivative(i.e. any order using polyder)? (2) let ano...
12年弱 前 | 0 件の回答 | 0
0
回答回答済み
Can C program be converted to Matlab ?
ya using MEX file.....we can convert it into MATLAB
Can C program be converted to Matlab ?
ya using MEX file.....we can convert it into MATLAB
12年弱 前 | 0
| 採用済み
質問
which model of arduino board is suiyable for what application of MATLAB
i wana know what type of arduino board model is available in market and which type of matlab code can be implement on this........
12年弱 前 | 0 件の回答 | 0
0
回答回答済み
Hi, I have a loop which calculate 110 values of velocity, i want to assign all these values in one array. Every time i try only the last value is assigned. Any help ????
for k=1:210 v(1,:)=your calculation end try it....it will save your all 210 values
Hi, I have a loop which calculate 110 values of velocity, i want to assign all these values in one array. Every time i try only the last value is assigned. Any help ????
for k=1:210 v(1,:)=your calculation end try it....it will save your all 210 values
12年弱 前 | 0
質問
is it possible to download interactive video tutorial which are given on academia segment on mathworks
here is index menu this give only pdf or program file ...........there is no option to download these video tutorials........ h...
12年弱 前 | 0 件の回答 | 0
0
回答質問
is it possible to convert second or higher order differential equation in s domain i.e. transfer function. directly how?
is it possible to convert second or higher order differential equation in s domain i.e. transfer function...directly
約12年 前 | 1 件の回答 | 0
1
回答質問
how find ramp response
what is method to find out ramp response of a transfer system.......... there is any command like step or impulse?
約12年 前 | 7 件の回答 | 1
7
回答回答済み
calculating a number in matlab
this would be correct syntax x=-(3+sqrt(9-(4*1*((-8)^-18)))/2) try it
calculating a number in matlab
this would be correct syntax x=-(3+sqrt(9-(4*1*((-8)^-18)))/2) try it
約12年 前 | 0
| 採用済み
質問
What is the difference between a toolbox's release notes, user's guide, reference, and getting started guide?
For the Control System Toolbox there are four different help-like PDF documents: # Control System Toolbox Getting Started Gui...
約12年 前 | 1 件の回答 | 1
1
回答解決済み
Times 2 - START HERE
Try out this test problem first. Given the variable x as your input, multiply it by two and put the result in y. Examples:...
約12年 前
質問
tutorials can be download as ppt or pdf
hello .........i want know .......can i download matlab interactive tutorials which have voice also.......in ppt or pdf form.......
約12年 前 | 0 件の回答 | 0
0
回答質問
how i can understand a project which has no. of files...
hello i want to know if a matlab project have no. of .m,.mat,.mdl file..... how i can understand which file will be run first....
約12年 前 | 1 件の回答 | 0
1
回答質問
how can make video from images.......
hello........suppose i have my 50 image......how i can play these image as video..........
約12年 前 | 4 件の回答 | 0
4
回答質問
how run .c program in matlab
if i have program print.c #include<stdio.h> #include<conio.h> main() { printf('hello') getchar() ...
約12年 前 | 1 件の回答 | 0
1
回答質問
hello.....how find out angle in degree
if i have complex number z=4+5i and i want angle(z) it is returning angle value in numerical form......is any method find angl...
約12年 前 | 4 件の回答 | 0
4
回答質問
what is function to find out adjoint of matrix............is there any command.......
what is command to find adjoint of matrix
約12年 前 | 4 件の回答 | 0
4
回答質問
plz send me code for finger print detection
hello i want to take finger image using my webcam and want to detect. plz send me code and command.
約12年 前 | 1 件の回答 | 0
1
回答質問
how will use nested loop
hello my problem is that i have 11 value for any variable suppose i=1:11 and have another variable suppose b=2:12 also has 1...
約12年 前 | 4 件の回答 | 0
4
回答質問
what is difference in cell and structure plz tell me with example
what is difference in cell and structure plz tell me with example
約12年 前 | 3 件の回答 | 1
3
回答質問
if i have .c file and i want to run it in matlab how it will convert in mex.......plz tell me in some detail by taking a small example
if i have .c file and i want to run it in matlab how it will convert in hex.......plz tell me in some detail by taking a small e...
約12年 前 | 1 件の回答 | 0
1
回答回答済み
How to check the numbers of characters of a string?
>>a='string'; >>n=length(a) so n will return length of a string
How to check the numbers of characters of a string?
>>a='string'; >>n=length(a) so n will return length of a string
12年以上 前 | 0
回答済み
Obtaining pixel value from image in GUI
plz type X(capital X) on command window...........all pixel value will be on front you
Obtaining pixel value from image in GUI
plz type X(capital X) on command window...........all pixel value will be on front you
12年以上 前 | 0
回答済み
How do I turn a nxm matrix into a single array?
to exact answer >>b=reshape(a',1,16) because matlab always prefer coloum element so pass a'(a transpose) for your exact output...
How do I turn a nxm matrix into a single array?
to exact answer >>b=reshape(a',1,16) because matlab always prefer coloum element so pass a'(a transpose) for your exact output...
12年以上 前 | 0
質問
i want to design pid controller.....using fuzzy logic....plz tell me procedure for that
using fuzzy and anfis
12年以上 前 | 1 件の回答 | 0
1
回答回答済み
How to put input of functions as an Array of elements
you are going right.... but you have to explain possible operation inside the function i.e. you have taken V & R two row vect...
How to put input of functions as an Array of elements
you are going right.... but you have to explain possible operation inside the function i.e. you have taken V & R two row vect...
12年以上 前 | 0