![photo](/responsive_image/150/150/0/0/0/cache/matlabcentral/profiles/15482977_1557738966079_DEF.jpg)
vidhathri bhat
Followers: 0 Following: 0
Statistiques
RANG
3 382
of 297 016
RÉPUTATION
16
CONTRIBUTIONS
1 Question
13 Réponses
ACCEPTATION DE VOS RÉPONSES
100.0%
VOTES REÇUS
0
RANG
of 20 419
RÉPUTATION
N/A
CLASSEMENT MOYEN
0.00
CONTRIBUTIONS
0 Fichier
TÉLÉCHARGEMENTS
0
ALL TIME TÉLÉCHARGEMENTS
0
CONTRIBUTIONS
0 Publications
CONTRIBUTIONS
0 Public Chaîne
CLASSEMENT MOYEN
CONTRIBUTIONS
0 Point fort
NOMBRE MOYEN DE LIKES
Feeds
Question
Why can I not answer matlab answers questions?
I am unable to answer or comment on any questions from this forum. When I try to answer or comment I don't get the text box to w...
plus de 4 ans il y a | 2 réponses | 0
2
réponsesHow to define answer value which i got it from ''for'' loop as a variable and use it in the same loop?
Hi, When you run the loop, on the first iteration if it is going to the else part, then there is no h2toplam variable defined a...
plus de 5 ans il y a | 0
| A accepté
random number between 0 and 1
Hi Instead of generating the array using randi function, you can create a zeroes array and pick 312 random indices and make the...
plus de 5 ans il y a | 0
Convert image coordinate to cartesian coordinates
Hi, In an image (0,0) co-ordinate is at top-left and in cartesian co-ordinate system it is at bottom left. That is why you are ...
plus de 5 ans il y a | 0
Why doesn't my code loop back up to the top again and how to fix it
Hi Answer = input('Is there a new item? hit 1 for yes 0 for no: ','s'); % altering final condition In this line you are readi...
plus de 5 ans il y a | 0
| A accepté
having trouble with number displays in matrix
Hi Try using format long g This will suppress scientific notation.
plus de 5 ans il y a | 0
Need help creating a for loop
Hi You can just use simple for loops to do this. data = [] for i=95:-5:5 data = [data 5:5:i] end end
plus de 5 ans il y a | 0
three-dimensional matrix and Excel
Hi, How do you want your 3rd dimension to be represented in excel? You can use reshape command to change the matrix to be a 2D ...
plus de 5 ans il y a | 0
| A accepté
colour intensity from different areas
Hi Intensity of image is given by (R+G+B)/3. You can calculate it using matlab. Refer to this page. https://www.imageeprocess...
plus de 5 ans il y a | 0
| A accepté
How to convert sometimes negative decimal matrix to two's complement
Hi You can use num2bin() function to do that. Here is an example. You can check out the functions here to change the parameter...
plus de 5 ans il y a | 0
Structural similarity for RGB image
Hi, ssim function in matlab does not support RGB images. You will have to convert both images to greyscale image.
plus de 5 ans il y a | 0
How to pass variables to .app standalone
Hi You can check out this matlab Answers question and see if it helps you. Also you can take a look at KeyInject function to...
plus de 5 ans il y a | 0
MAtlab 2018b crashes after opening to point of accepting input.
Hi I'm assuming that problem started after installation of 2018b. If so you can contact mathworks. They provide free support fo...
plus de 5 ans il y a | 0
how can i express the following question in matlab about save command?
Take the input from the user as to whether he wants jpeg or png image using if-else statement. prompt = 'input 1-for jpeg 2-for...
plus de 5 ans il y a | 0