I have a numerical vector made of ones and zeros. I would like to switch the ones and the zeros. I tried by creating a new vector vector_6 = vector_5 and then vector_6(0==1) but it gave me back an empty vector. What am I doing wrong?

 채택된 답변

the cyclist
the cyclist 2016년 5월 23일

0 개 추천

A = [1 0 1 0 1];
A = 1-A;

추가 답변 (0개)

카테고리

도움말 센터File Exchange에서 Aerospace Blockset에 대해 자세히 알아보기

제품

태그

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by