photo

vidhathri bhat


Last seen: más de 3 años hace Con actividad desde 2019

Followers: 0   Following: 0

Estadística

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

Ver insignias

Feeds

Ver por

Pregunta


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

alrededor de 4 años hace | 2 respuestas | 0

2

respuestas

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

alrededor de 5 años hace | 0

| aceptada

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

alrededor de 5 años hace | 0

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

alrededor de 5 años hace | 0

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

alrededor de 5 años hace | 0

| aceptada

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

alrededor de 5 años hace | 0

Respondida
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

alrededor de 5 años hace | 0

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

alrededor de 5 años hace | 0

| aceptada

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

alrededor de 5 años hace | 0

| aceptada

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

alrededor de 5 años hace | 0

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

alrededor de 5 años hace | 0

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

alrededor de 5 años hace | 0

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

alrededor de 5 años hace | 0

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

alrededor de 5 años hace | 0