Community Profile

photo

vidhathri bhat


Last seen: 3 years ago Active since 2019

Followers: 0   Following: 0

Statistics

All
  • Thankful Level 1
  • Knowledgeable Level 2
  • Introduction to MATLAB Master
  • Community Group Solver
  • Solver
  • First Answer

View badges

Feeds

View by

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...

4 years ago | 2 answers | 0

2

answers

Answered
How 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...

5 years ago | 0

| accepted

Answered
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...

5 years ago | 0

Answered
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 ...

5 years ago | 0

Answered
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...

5 years ago | 0

| accepted

Answered
having trouble with number displays in matrix
Hi Try using format long g This will suppress scientific notation.

5 years ago | 0

Answered
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

5 years ago | 0

Answered
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 ...

5 years ago | 0

| accepted

Answered
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...

5 years ago | 0

| accepted

Answered
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...

5 years ago | 0

Answered
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.

5 years ago | 0

Answered
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...

5 years ago | 0

Answered
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...

5 years ago | 0

Answered
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...

5 years ago | 0